-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.env.example
More file actions
41 lines (32 loc) · 1.11 KB
/
Copy path.env.example
File metadata and controls
41 lines (32 loc) · 1.11 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
# Copy this file to .env for the official local-dev workflow.
# Docker runs infra on localhost; optional containerized app services override
# these hostnames inside docker-compose.app.yml.
# Database
DATABASE_URL=postgresql+asyncpg://cocivil:cocivil@localhost:5432/cocivil
DATABASE_URL_SYNC=postgresql+psycopg2://cocivil:cocivil@localhost:5432/cocivil
# Redis
REDIS_URL=redis://localhost:6379/0
# S3 / MinIO
S3_ENDPOINT_URL=http://localhost:9000
S3_ACCESS_KEY=minioadmin
S3_SECRET_KEY=minioadmin
S3_BUCKET_NAME=cocivil-docs
# JWT
JWT_SECRET_KEY=change-me-in-production
JWT_ALGORITHM=HS256
JWT_ACCESS_TOKEN_EXPIRE_MINUTES=30
# API
API_V1_PREFIX=/api/v1
# AI Provider
AI_PROVIDER=claude
AI_API_KEY=
AI_MODEL=claude-sonnet-4-20250514
# Users / Billing Database
USERS_DATABASE_URL=postgresql+asyncpg://cocivil:cocivil@localhost:5432/cocivil_users
USERS_DATABASE_URL_SYNC=postgresql+psycopg2://cocivil:cocivil@localhost:5432/cocivil_users
# Stripe (required for billing features)
STRIPE_SECRET_KEY=
STRIPE_WEBHOOK_SECRET=
STRIPE_PUBLISHABLE_KEY=
# Google Places (optional — contractor recommendations)
GOOGLE_PLACES_API_KEY=