# ── RV50x Template Manager — Environment Configuration ───────────────────── # # Copy this file to .env and fill in your values. # Never commit .env to version control — it contains secrets. # # docker-compose reads this file automatically. # For Portainer: paste these into the Environment Variables section of the stack. # ─────────────────────────────────────────────────────────────────────────── # ── NocoDB connection ──────────────────────────────────────────────────────── # # If using the built-in NocoDB from this stack: # NOCODB_URL=http://nocodb:8080 # # If pointing at an existing external NocoDB instance: # NOCODB_URL=http://192.168.16.130:8080 # # After spinning up the stack and importing your data, update the IDs below # by reading them from the NocoDB browser URL: # http://host/w98wg3nt/{NOCODB_BASE_ID}/{NOCODB_TABLE_ID}/{NOCODB_VIEW_ID}/... NOCODB_URL=http://nocodb:8080 NOCODB_TOKEN=your-nocodb-api-token-here NOCODB_BASE_ID=your-base-id-here NOCODB_TABLE_ID=your-table-id-here NOCODB_VIEW_ID=your-view-id-here # ── PostgreSQL password ────────────────────────────────────────────────────── # Used internally by NocoDB. Choose a strong password. # You won't need to type this anywhere — it's only used container-to-container. POSTGRES_PASSWORD=changeme_use_a_strong_password_here # ── NocoDB JWT secret ──────────────────────────────────────────────────────── # Used to sign NocoDB auth tokens. Any long random string works. # Generate one with: openssl rand -hex 32 NC_JWT_SECRET=changeme_use_a_long_random_string_here # ── Playwright timeouts (optional — defaults shown) ────────────────────────── # Increase these if your modems are slow to respond. # Values are in milliseconds. # PAGE_TIMEOUT=90000 # DOWNLOAD_TIMEOUT=120000 # UPLOAD_TIMEOUT=120000 # MAX_RETRIES=3