-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy path.env.example
More file actions
18 lines (18 loc) · 784 Bytes
/
Copy path.env.example
File metadata and controls
18 lines (18 loc) · 784 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Backend env template. Copy to .env at the repo root for local dev.
REDCELL_ENV=dev
REDCELL_DATABASE_URL=postgresql+asyncpg://redcell:redcell@localhost:5432/redcell
REDCELL_REDIS_URL=redis://localhost:6379/0
# live runs real tools in the Kali container; sim replays canned output and runs nothing.
REDCELL_RUN_MODE=live
REDCELL_ADMIN_USERNAME=admin
REDCELL_ADMIN_PASSWORD=admin
# Leave blank in dev: generated once and persisted to .redcell-dev-secrets/.
# In production set real values here (or point *_FILE at mounted secret files).
REDCELL_JWT_SECRET=
REDCELL_SECRET_KEY=
REDCELL_S3_ENDPOINT=http://localhost:9000
REDCELL_S3_ACCESS_KEY=minioadmin
REDCELL_S3_SECRET_KEY=minioadmin
REDCELL_S3_REGION=us-east-1
REDCELL_S3_PRESIGN_ENDPOINT=
REDCELL_CORS_ORIGINS=http://localhost:5183