Skip to content

Latest commit

 

History

History
59 lines (39 loc) · 716 Bytes

File metadata and controls

59 lines (39 loc) · 716 Bytes

For me only

Setup

  1. Install server dependencies

    uv venv
    source .venv/bin/activate
    uv sync --frozen
  2. Install client dependencies

    cd client
    pnpm install --frozen-lockfile
  3. Configure environment variables

    Create a .env file in the project root and add the required environment variables.

Running

Open two terminal windows:

Terminal 1:

make dev

Terminal 2:

cd client
pnpm dev

Deploying to Heroku

  1. Log in to Heroku

    heroku login
  2. Set the remote

    heroku git:remote -a knapsnack
  3. Deploy

    git push heroku main