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