browser-based music production.
- Install CLI dependencies via homebrew:
brew install pnpm supabase homebrew/cask/docker
- Install node:
mise is recommended for managing node versions. If mise is installed, run the following command to install an appropriate version of node:
mise install
- Install node dependencies:
pnpm i
- Initialize supabase and follow the prompts:
Important
Make sure docker is running before starting supabase
supabase init && supabase start
- Generate a .env file via script:
./dotenv.sh
- Start the development server:
pnpm run dev --open
Local env data is populated via the seed.sql
file. To log in via the UI, use the following credentials:
Email address | Password |
---|---|
[email protected] | password123 |
This seed file is executed every time you run supabase start
or supabase db reset
. To reset all local environment data to the initial state, run:
supabase db reset
To run the test suite:
pnpm run test