-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.deploy.example
More file actions
40 lines (32 loc) · 1.38 KB
/
Copy path.env.deploy.example
File metadata and controls
40 lines (32 loc) · 1.38 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
# Environment file for docker-compose.deploy.yml
OPENCASHIER_REGISTRY=ghcr.io
OPENCASHIER_NAMESPACE=aaaaaajie
OPENCASHIER_IMAGE_TAG=v0.1.0-beta.1
# Example for a mirrored registry in mainland China:
# OPENCASHIER_REGISTRY=registry.cn-hangzhou.aliyuncs.com
# OPENCASHIER_NAMESPACE=your-namespace
# Direct exposure mode
WEB_PUBLISHED_BIND=0.0.0.0
WEB_PUBLISHED_PORT=80
APP_SECRET=replace-with-a-long-random-string
PLATFORM_CONFIG_MASTER_KEY=replace-with-a-long-random-string
APP_BASE_URL=https://pay.example.com
WEB_BASE_URL=https://pay.example.com
APP_API_BASE_URL=/api/v1
ADMIN_USERNAME=replace-with-admin-username
ADMIN_PASSWORD=replace-with-a-strong-admin-password
ENABLE_DEMO_DATA=0
POSTGRES_DB=cashier
POSTGRES_USER=postgres
POSTGRES_PASSWORD=replace-with-a-strong-password
# Internal PostgreSQL service alias used by the default deployment stack.
# Override via DATABASE_URL only when using an external database.
# DATABASE_URL=postgresql://user:password@opencashier-postgres:5432/cashier?schema=public
# Optional reverse-proxy mode for an existing Dockerized gateway
# OPENCASHIER_REVERSE_PROXY_NETWORK=contexta_default
# OPENCASHIER_API_NETWORK_ALIAS=opencashier-api
# OPENCASHIER_WEB_NETWORK_ALIAS=opencashier-web
# External PostgreSQL deployment
# DATABASE_URL=postgresql://user:password@db.example.com:5432/cashier?schema=public
# External schema migration pipeline
# SKIP_PRISMA_DB_PUSH=0