Bash
psql -U postgres
if you can't access with postgres account, you can connect with this account.
sudo -i -u postgres
psql
SQL
CREATE ROLE username WITH LOGIN PASSWORD 'your-password-here';
SQL
ALTER ROLE username CREATEDB;
\q
Bash
sqlx database create # 만약 DB를 생성하지 않았다면 실행
sqlx migrate run
cargo run