mirror of
https://github.com/actix/examples
synced 2024-11-24 06:43:00 +01:00
551 B
551 B
This example illustrates:
- tokio_postgres
- use of tokio_pg_mapper for postgres data mapping
- deadpool_postgres for connection pooling
Instructions
- Set up the testing database by running /sql/create_db.sh
cargo run
- from the command line (linux), POST a user to the endpoint:
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 running this twice will return a 500