Skip to content

Commit a659482

Browse files
authored
Merge pull request usnavy13#82 from usnavy13/dev
feat: improve execution continuity, PTC contracts, and deployment workflows
2 parents 362b922 + da99b2e commit a659482

56 files changed

Lines changed: 3909 additions & 3966 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.env.example

Lines changed: 18 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,26 @@ MINIO_SECRET_KEY=minioadmin
3232
# SANDBOX_UID=1002 # Shared host UID for all sandbox languages
3333

3434
# ── Port ──────────────────────────────────────────────────────
35-
# PORT=8000 # External port the API is reachable on
35+
# PORT=8000 # External host port published by docker compose
3636

3737
# ── SSL/HTTPS ──────────────────────────────────────────────────
38-
# ENABLE_HTTPS=false
39-
# SSL_CERT_FILE=/path/to/cert.pem
40-
# SSL_KEY_FILE=/path/to/key.pem
38+
# HTTPS works the same with docker-compose.yml and docker-compose.prod.yml:
39+
# 1. SSL_CERTS_PATH is a host path mounted to /app/ssl inside the container
40+
# 2. SSL_CERT_FILE and SSL_KEY_FILE must be container paths under /app/ssl
41+
#
42+
# Simple local/self-managed cert directory:
43+
# PORT=443
44+
# ENABLE_HTTPS=true
45+
# SSL_CERTS_PATH=./ssl
46+
# SSL_CERT_FILE=/app/ssl/fullchain.pem
47+
# SSL_KEY_FILE=/app/ssl/privkey.pem
48+
#
49+
# Let's Encrypt on the host:
50+
# PORT=443
51+
# ENABLE_HTTPS=true
52+
# SSL_CERTS_PATH=/etc/letsencrypt
53+
# SSL_CERT_FILE=/app/ssl/live/example.com/fullchain.pem
54+
# SSL_KEY_FILE=/app/ssl/live/example.com/privkey.pem
4155

4256
# ── Logging ────────────────────────────────────────────────────
4357
# LOG_LEVEL=INFO # INFO = clean (1 log per execution); DEBUG = full detail

0 commit comments

Comments
 (0)