-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
31 lines (25 loc) · 1.11 KB
/
Copy path.env.example
File metadata and controls
31 lines (25 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
# Required. The process does not start without these.
DJANGO_SECRET_KEY=dev-only-change-me
OSDS_SECRET_KEY=dev-only-change-me-too
# Off unless set to 1/true/yes/on.
DJANGO_DEBUG=1
# App and worker connect as the least-privilege role, so RLS is enforced.
DATABASE_URL=postgresql://osds_app:osds_dev_only@localhost:5432/osds
# Migrations and codegen connect as the table owner (DDL, and it may bypass RLS).
DATABASE_URL_ADMIN=postgresql://osds:osds_dev_only@localhost:5432/osds
S3_ENDPOINT=http://localhost:9000
S3_BUCKET=osds
S3_ACCESS_KEY=osds
S3_SECRET_KEY=osds_dev_only
SMTP_HOST=localhost
SMTP_PORT=1025
SMTP_FROM=noreply@localhost
APP_URL=http://localhost:3000
SESSION_SECRET=change_me_in_production
# packages/web: on localhost the Host header matches no tenants.domain, so the
# public site falls back to this tenant slug.
OSDS_DEV_TENANT_SLUG=chicago-plumbers
# packages/web admin/console: the hostname the installation console is served
# at, where the first-run wizard runs and where an operator accepts an
# invitation. Deployment topology - required, no default, read once at startup.
OSDS_CONSOLE_HOST=console.localhost