mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-19 05:41:22 +02:00
Feat: New project chat, uload refactor (postgress), hosting plans, uload landingpage
This commit is contained in:
parent
559eb08d8c
commit
fcf3a344b1
123 changed files with 7106 additions and 3715 deletions
|
|
@ -1,4 +1,9 @@
|
|||
version: '3.8'
|
||||
# =============================================================================
|
||||
# uload Docker Compose - Coolify Deployment
|
||||
# =============================================================================
|
||||
# This file is used by Coolify for deployment.
|
||||
# Environment variables are injected by Coolify.
|
||||
# =============================================================================
|
||||
|
||||
services:
|
||||
app:
|
||||
|
|
@ -8,10 +13,38 @@ services:
|
|||
ports:
|
||||
- '3000:3000'
|
||||
environment:
|
||||
NODE_ENV: ${NODE_ENV:-production}
|
||||
NODE_ENV: production
|
||||
PORT: 3000
|
||||
HOST: 0.0.0.0
|
||||
ORIGIN: ${ORIGIN:-https://ulo.ad}
|
||||
PUBLIC_POCKETBASE_URL: ${PUBLIC_POCKETBASE_URL}
|
||||
PUBLIC_UMAMI_URL: ${PUBLIC_UMAMI_URL}
|
||||
PUBLIC_UMAMI_WEBSITE_ID: ${PUBLIC_UMAMI_WEBSITE_ID}
|
||||
|
||||
# Database (set in Coolify)
|
||||
DATABASE_URL: ${DATABASE_URL}
|
||||
|
||||
# Redis (optional, set in Coolify)
|
||||
REDIS_URL: ${REDIS_URL:-}
|
||||
|
||||
# Auth
|
||||
AUTH_SECRET: ${AUTH_SECRET}
|
||||
|
||||
# External Services (set in Coolify)
|
||||
RESEND_API_KEY: ${RESEND_API_KEY:-}
|
||||
STRIPE_SECRET_KEY: ${STRIPE_SECRET_KEY:-}
|
||||
STRIPE_WEBHOOK_SECRET: ${STRIPE_WEBHOOK_SECRET:-}
|
||||
|
||||
# R2 Storage (set in Coolify)
|
||||
R2_ACCESS_KEY_ID: ${R2_ACCESS_KEY_ID:-}
|
||||
R2_SECRET_ACCESS_KEY: ${R2_SECRET_ACCESS_KEY:-}
|
||||
R2_BUCKET_NAME: ${R2_BUCKET_NAME:-}
|
||||
R2_ENDPOINT: ${R2_ENDPOINT:-}
|
||||
|
||||
# Analytics (optional)
|
||||
PUBLIC_UMAMI_URL: ${PUBLIC_UMAMI_URL:-}
|
||||
PUBLIC_UMAMI_WEBSITE_ID: ${PUBLIC_UMAMI_WEBSITE_ID:-}
|
||||
restart: unless-stopped
|
||||
healthcheck:
|
||||
test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://localhost:3000/api/health"]
|
||||
interval: 30s
|
||||
timeout: 10s
|
||||
retries: 3
|
||||
start_period: 40s
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue