- Rust
- Postgres
- Create database user with
createuser <user> - Create database with
createdb -O <user> <dbname> - Create environmental variable
DATABASE_URLto bepostgres://<user>@localhost/<dbname>and make sure it is in your session - Run database migrations with
sqlx-clior the binarysqlx migrate runcargo run --bin migrate