make build make up
cd frontend npm install
cd backend go mod download
cd backend
migrate create -ext sql -dir db/migrations -seq create_users_table
export DATABASE_URL=postgres://user:password@localhost:5432/onpu?sslmode=disable migrate -path db/migrations -database "$DATABASE_URL" up
docker exec db bash psql -U user -d onpu
cd frontend npm run lint
cd backend golangci-lint run --fix