mirror of
https://github.com/actix/examples
synced 2024-11-24 06:43:00 +01:00
996 B
996 B
async_pg example
This example illustrates
tokio_postgres
- use of
tokio_pg_mapper
for postgres data mapping deadpool_postgres
for connection poolingdotenv
+config
for configuration
Instructions
-
Set up the testing database by running the included script:
./sql/create_db.sh
-
Create
.env
file:SERVER_ADDR=127.0.0.1:8080 PG.USER=test_user PG.PASSWD=testing PG.HOST=127.0.0.1 PG.PORT=5432 PG.DBNAME=testing_db PG.POOL.MAX_SIZE=16
-
Run the server:
cargo run
-
Using a different terminal send a HTTP POST request to the running server:
echo '{"email": "ferris@thecrab.com", "first_name": "ferris", "last_name": "crab", "username": "ferreal"}' | http -f --json --print h POST http://127.0.0.1:8080/users
A unique constraint exists for username, so sending this request twice will return an internal server error (HTTP 500).