Files
my_openplace/.env.example
T
zack3d 30f6a76891 feat(db): add tile-region mapping datasets
Add regions.csv and tile_region_mapping.csv to provide region metadata
and tile-to-region relationships. Update server initialization and auth
routes to integrate the new data, and expand .env.example with related
configuration variables.

This makes region information queryable and prepares scripts for
seeding/import.
2025-10-02 23:50:06 -07:00

26 lines
688 B
Bash

PORT=3000
DATABASE_URL="mysql://root:password@localhost/FurryPlace"
# Only required for development
SHADOW_DATABASE_URL="mysql://root:password@localhost/openplace_shadow"
JWT_SECRET="your-secret-key"
# Google OAuth
GOOGLE_CLIENT_ID="your-google-client-id"
GOOGLE_CLIENT_SECRET="your-google-client-secret"
GOOGLE_CALLBACK_URL="http://localhost:3000/auth/google/callback"
# Cookie configuration
COOKIE_SECURE=true
COOKIE_SAME_SITE=Strict
# Optional: set to your public domain if needed (e.g., example.com)
COOKIE_DOMAIN=
# Bot protection
TURNSTILE_SECRET_KEY="your-turnstile-secret"
# Development bypass token (set to empty in production)
TURNSTILE_BYPASS_TOKEN="turnstile-disabled"