1
0
mirror of https://github.com/actix/examples synced 2024-11-23 22:41:07 +01:00
examples/diesel/README.md
Kelly Thomas Kline 8011d2d64d
Correct path
2018-05-20 18:22:04 -07:00

996 B

diesel

Diesel's Getting Started guide using SQLite for Actix web

Usage

init database sqlite

cargo install diesel_cli --no-default-features --features sqlite
cd examples/diesel
echo "DATABASE_URL=file:test.db" > .env
diesel migration run

server

# if ubuntu : sudo apt-get install libsqlite3-dev
# if fedora : sudo dnf install libsqlite3x-devel
cd examples/diesel
cargo run (or ``cargo watch -x run``)
# Started http server: 127.0.0.1:8080

web client

http://127.0.0.1:8080/NAME

sqlite client

# if ubuntu : sudo apt-get install sqlite3
# if fedora : sudo dnf install sqlite3x
sqlite3 test.db
sqlite> .tables
sqlite> select * from users;

Postgresql

You will also find another complete example of diesel+postgresql on https://github.com/TechEmpower/FrameworkBenchmarks/tree/master/frameworks/Rust/actix