You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
459 B
32 lines
459 B
# Root |
|
|
|
Team collaboration platform. |
|
|
|
## Quick Start |
|
|
|
```bash |
|
# Install |
|
npm install |
|
|
|
# Set up environment |
|
cp .env.example .env |
|
# Fill in your Supabase credentials in .env |
|
|
|
# Run migrations in Supabase Dashboard > SQL Editor |
|
# Copy & run each file in supabase/migrations/ in order (001, 002, 003...) |
|
|
|
# Start dev server |
|
npm run dev |
|
``` |
|
|
|
Open http://localhost:5173 |
|
|
|
## Docker |
|
|
|
```bash |
|
# Production |
|
docker-compose up app |
|
|
|
# Development |
|
docker-compose up dev |
|
```
|
|
|