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>
15 lines
305 B
Plaintext
15 lines
305 B
Plaintext
# Application settings
|
|
APP_NAME="Another Nuzlocke Tracker API"
|
|
DEBUG=true
|
|
|
|
# API settings
|
|
API_V1_PREFIX="/api/v1"
|
|
|
|
# Database settings
|
|
DATABASE_URL="sqlite:///./nuzlocke.db"
|
|
|
|
# Supabase Auth
|
|
SUPABASE_URL=https://your-project.supabase.co
|
|
SUPABASE_ANON_KEY=your-anon-key
|
|
SUPABASE_JWT_SECRET=your-jwt-secret
|