1
0
mirror of https://github.com/actix/actix-extras.git synced 2024-11-24 16:02:59 +01:00
actix-extras/examples/diesel/README.md

20 lines
515 B
Markdown
Raw Normal View History

2017-12-30 12:21:34 +01:00
# diesel
2017-12-19 01:25:26 +01:00
Diesel's `Getting Started` guide using SQLite for Actix web
## Usage
install `diesel_cli`
2017-12-30 12:21:34 +01:00
```bash
2017-12-19 01:25:26 +01:00
cargo install diesel_cli --no-default-features --features sqlite
```
2017-12-30 12:21:34 +01:00
```bash
echo "DATABASE_URL=file:test.db" > .env
diesel migration run
2017-12-19 01:25:26 +01:00
```
2017-12-30 12:21:34 +01:00
## Postgresql
You will also find another complete example of diesel+postgresql on [https://github.com/TechEmpower/FrameworkBenchmarks/tree/master/frameworks/Rust/actix](https://github.com/TechEmpower/FrameworkBenchmarks/tree/master/frameworks/Rust/actix)