KO
|
EN
gitlite — search
Search
#python
#java
#python3
#arduino
#golang
#machine-learning
#rust
#html
#flask
#javascript
#seismology
#nodejs
example
★ 20
Open GitHub ↗
Example project for Vania Framework
Download README (.md)
Explore Similar Repositories
trekker
:
A hackable browser for Emacs
TG-DL-Api-Workers
:
Creates download links to telegram files stored in channel. Deployable to cloudflare workers
modelscope-agent-with-local-llm
:
本项目基于modelscope-agent-v0.3和 api-for-open-llm 或 llamacpp 组件共同实现了一个AI Agent,能够利用本地的大模型(LLM)实现使用自定义工具功能。使用了Qwen1.5大模型。
LLM4CodeSummarization
:
No description available.
Deep_Motor_SDK
:
SDK For J60 Joint Module Control
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
example
?
Download (.md)
# Vania Example Project ## Getting Started Clone this repository: ```shell git clone https://github.com/vania-dart/example.git ``` ### Configure Your Database In `config/database.dart`, replace your database credentials: ```dart DatabaseConfig databaseConfig = DatabaseConfig( driver: MysqlDriver(), host: '127.0.0.1', // Your server address database: 'MyDb', // Database name username: 'root', // Username password: 'Password', // Password port: 3306, sslmode: false, ); ``` ## Migrate Your Tables Run `vania migrate`. ## Serve Run `vania serve`. Enjoy!