Add user authentication with login/signup/protected routes, boss pokemon detail fields and result team tracking, moves and abilities selector components and API, run ownership and visibility controls, and various UI improvements across encounters, run list, and journal pages. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
14 lines
398 B
Plaintext
14 lines
398 B
Plaintext
# Backend settings
|
|
DEBUG=true
|
|
DATABASE_URL=postgresql://postgres:postgres@localhost:5432/nuzlocke
|
|
|
|
# Supabase Auth (backend)
|
|
SUPABASE_URL=https://your-project.supabase.co
|
|
SUPABASE_ANON_KEY=your-anon-key
|
|
SUPABASE_JWT_SECRET=your-jwt-secret
|
|
|
|
# Frontend settings (used by Vite)
|
|
VITE_API_URL=http://localhost:8000
|
|
VITE_SUPABASE_URL=https://your-project.supabase.co
|
|
VITE_SUPABASE_ANON_KEY=your-anon-key
|