mirror of
https://github.com/actix/actix-extras.git
synced 2024-11-24 07:53:00 +01:00
add diesel+postgresql link
This commit is contained in:
parent
6ea894547d
commit
2d769f805a
@ -1,15 +1,20 @@
|
|||||||
|
# diesel
|
||||||
|
|
||||||
Diesel's `Getting Started` guide using SQLite for Actix web
|
Diesel's `Getting Started` guide using SQLite for Actix web
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
|
||||||
install `diesel_cli`
|
install `diesel_cli`
|
||||||
|
|
||||||
```
|
```bash
|
||||||
cargo install diesel_cli --no-default-features --features sqlite
|
cargo install diesel_cli --no-default-features --features sqlite
|
||||||
```
|
```
|
||||||
|
|
||||||
|
```bash
|
||||||
|
echo "DATABASE_URL=file:test.db" > .env
|
||||||
|
diesel migration run
|
||||||
|
```
|
||||||
|
|
||||||
```
|
## Postgresql
|
||||||
$ echo "DATABASE_URL=file:test.db" > .env
|
|
||||||
$ diesel migration run
|
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)
|
||||||
```
|
|
Loading…
Reference in New Issue
Block a user