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.
459 B
459 B
Root
Team collaboration platform.
Quick Start
# 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
Docker
# Production
docker-compose up app
# Development
docker-compose up dev