For more information on how to this works with other frontends/backends, head over to the RealWorld repo.
docker run -d --name postgres-14 -p 5432:5432 -e POSTGRES_PASSWORD=password postgres:14
Change postgres database url in .env file
Run
cargo install sqlx-cli
if not install itrun sqlx command to migration database model then build the project
sqlx database create
sqlx migrate run
cargo run --release
developing