git clone
cd yukikaze
bun install
- Start the postgres server with
docker
:
docker run -d -p 5432:5432 -e POSTGRES_PASSWORD=postgres --name yukikaze-postgres postgres
- Add the following environment variables to a
.env
file:
DATABASE_URL=postgres://postgres:postgres@localhost:5432/yukikaze-postgres
- Run the application:
bun db:push
bun dev