larsen/README.md
2023-11-20 09:31:54 -05:00

39 lines
685 B
Markdown

# Larson
A way for music producers to get feedback on different versions of their music tracks.
## Deploying
TODO.
## Developing
1. Setup a `.env` file using the following template:
```env
DATABASE_URL="file:dev.db"
S3_ENDPOINT="http://localhost:4566"
S3_BUCKET="larsen-dev"
```
2. Run `pnpm install`
3. Run `pnpx prisma db push`
4. Setup an S3-compatible service for audio file storage
5. Start the development server:
```bash
pnpm run dev
# or start the server and open the app in a new browser tab
pnpm run dev -- --open
```
## Building
To create a production version of the app:
```bash
pnpm run build
```
You can preview the production build with `pnpm run preview`.