mirror of
https://github.com/actix/actix-web.git
synced 2024-12-21 15:46:48 +00:00
15 lines
241 B
Markdown
15 lines
241 B
Markdown
Diesel's `Getting Started` guide using SQLite for Actix web
|
|
|
|
## Usage
|
|
|
|
install `diesel_cli`
|
|
|
|
```
|
|
cargo install diesel_cli --no-default-features --features sqlite
|
|
```
|
|
|
|
|
|
```
|
|
$ echo "DATABASE_URL=file:test.db" > .env
|
|
$ diesel migration run
|
|
```
|