-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env
62 lines (50 loc) · 1.38 KB
/
.env
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#
AGENT_PORT=50000
AGENT_INTERFACE="localhost"
ORCHESTRATOR_PORT=50001
ORCHESTRATOR_INTERFACE="localhost"
CONTAINER_INTERFACE="lo0"
# Domain
# This would be set to the production domain with an env var on deployment
DOMAIN=localhost
# Environment: local, staging, production
ENVIRONMENT=local
PROJECT_NAME=interactEM
STACK_NAME=interactEM
# Backend
BACKEND_CORS_ORIGINS="http://localhost,http://localhost:5173,https://localhost,https://localhost:5173,http://localhost.tiangolo.com,http://localhost:3000"
SECRET_KEY=changethis
FIRST_SUPERUSER_PASSWORD=changethis
EXTERNAL_SECRET_KEY=changeme
EXTERNAL_ALGORITHM=changeme
# Emails
SMTP_HOST=
SMTP_USER=
SMTP_PASSWORD=
SMTP_TLS=True
SMTP_SSL=False
SMTP_PORT=587
# Postgres
POSTGRES_SERVER=localhost
POSTGRES_PORT=5432
POSTGRES_DB=app
POSTGRES_USER=postgres
POSTGRES_PASSWORD=changethis
# NATS
NATS_SERVER_URL=nats://nats1:4222
NATS_SERVER_URL_IN_CONTAINER=nats://host.containers.internal:4222
# Generate this using ./nats-conf/generate-auth-nkey.sh
NKEYS_SEED_FILE=/path/to/app_user.nk
SENTRY_DSN=
# Configure these with your own Docker registry images
DOCKER_IMAGE_BACKEND=backend
DOCKER_IMAGE_FRONTEND=frontend
DOCKER_IMAGE_ORCHESTRATOR=orchestrator
DOCKER_IMAGE_AGENT=agent
DOCKER_IMAGE_OPERATOR=operator
DOCKER_IMAGE_CALLOUT=callout
# For operators
GITHUB_USERNAME=
GITHUB_PASSWORD=