Create database
psql -U postgrescreate database ut;
create role ut with login password 'ut';
grant all privileges on database ut to ut;Create .env
RUST_BACKTRACE=1
RUST_LOG=debug,sqlx=warn
UT_SECRET_KEY=dev
UT_DATABASE=postgresql://ut:ut@localhost/utRun
cargo watch -x runInstall dependencies
npm installRun dev server
npm run dev