-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
45 lines (36 loc) · 1.18 KB
/
.env.example
File metadata and controls
45 lines (36 loc) · 1.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# Django Settings
DJANGO_SECRET_KEY=your_django_secret_key_here
DJANGO_DEBUG=True
DJANGO_ALLOWED_HOSTS=localhost,127.0.0.1
# PostgreSQL Configuration
POSTGRES_DB=django_db
POSTGRES_USER=postgres
POSTGRES_PASSWORD=postgres
POSTGRES_HOST=localhost
POSTGRES_PORT=5432
DATABASE_URL=postgres://postgres:postgres@localhost:5432/django_db
# Supabase Settings
SUPABASE_URL=https://your-supabase-project.supabase.co
SUPABASE_ANON_KEY=your_supabase_anon_key_here
SUPABASE_SERVICE_ROLE_KEY=your_supabase_service_role_key_here
SUPABASE_JWT_SECRET=your_supabase_jwt_secret_here
# Supabase Test Settings
TEST_USER_EMAIL=test@example.com
TEST_USER_PASSWORD=testpassword123
TEST_BUCKET_NAME=test-bucket
TEST_TABLE_NAME=test_table
TEST_EDGE_FUNCTION=hello-world
SKIP_USER_CREATION=true
# Redis Settings
REDIS_URL=redis://redis:6379/0
# Celery Settings
CELERY_BROKER_URL=redis://redis:6379/0
CELERY_RESULT_BACKEND=redis://redis:6379/0
# Sentry Settings
SENTRY_DSN=your_sentry_dsn_here
# Rate Limiting Settings
DEFAULT_THROTTLE_RATES_ANON=100/day
DEFAULT_THROTTLE_RATES_USER=1000/day
DEFAULT_THROTTLE_RATES_PREMIUM=5000/day
# CORS Settings
CORS_ALLOWED_ORIGINS=http://localhost:3000,https://your-frontend-domain.com