1
0
mirror of https://github.com/actix/examples synced 2024-11-23 22:41:07 +01:00
examples/databases/diesel/README.md

120 lines
2.0 KiB
Markdown
Raw Permalink Normal View History

# diesel
Basic integration of [Diesel](https://diesel.rs) using SQLite for Actix Web.
## Usage
### Install SQLite
```sh
# on OpenSUSE
sudo zypper install sqlite3-devel libsqlite3-0 sqlite3
# on Ubuntu
sudo apt-get install libsqlite3-dev sqlite3
# on Fedora
sudo dnf install libsqlite3x-devel sqlite3x
# on macOS (using homebrew)
brew install sqlite3
```
### Initialize SQLite Database
```sh
2022-02-18 03:27:07 +01:00
cd databases/diesel
cargo install diesel_cli --no-default-features --features sqlite
echo "DATABASE_URL=test.db" > .env
2022-11-04 23:11:36 +01:00
diesel setup
diesel migration run
```
There will now be a database file at `./test.db`.
### Running Server
```sh
2022-02-18 03:27:07 +01:00
cd databases/diesel
2022-02-18 03:32:44 +01:00
cargo run
# Started http server: 127.0.0.1:8080
```
### Available Routes
#### `POST /user`
Inserts a new user into the SQLite DB.
Provide a JSON payload with a name. Eg:
2022-03-06 01:43:10 +01:00
```json
{ "name": "bill" }
```
On success, a response like the following is returned:
2022-03-06 01:43:10 +01:00
```json
{
2022-03-06 01:43:10 +01:00
"id": "9e46baba-a001-4bb3-b4cf-4b3e5bab5e97",
"name": "bill"
}
```
<details>
<summary>Client Examples</summary>
Using [HTTPie]:
2022-03-06 01:43:10 +01:00
```sh
http POST localhost:8080/user name=bill
```
Using cURL:
```sh
curl -S -X POST --header "Content-Type: application/json" --data '{"name":"bill"}' http://localhost:8080/user
```
</details>
#### `GET /user/{user_uid}`
Gets a user from the DB using its UID (returned from the insert request or taken from the DB directly). Returns a 404 when no user exists with that UID.
<details>
<summary>Client Examples</summary>
Using [HTTPie]:
2022-03-06 01:43:10 +01:00
```sh
http localhost:8080/user/9e46baba-a001-4bb3-b4cf-4b3e5bab5e97
```
Using cURL:
```sh
curl -S http://localhost:8080/user/9e46baba-a001-4bb3-b4cf-4b3e5bab5e97
```
</details>
### Explore The SQLite DB
```sh
sqlite3 test.db
```
```
sqlite> .tables
sqlite> SELECT * FROM users;
```
## Using Other Databases
You can find a complete example of Diesel + PostgreSQL at: [https://github.com/TechEmpower/FrameworkBenchmarks/tree/master/frameworks/Rust/actix](https://github.com/TechEmpower/FrameworkBenchmarks/tree/master/frameworks/Rust/actix)
[httpie]: https://httpie.io/cli