# Server Configuration PORT=3100 DOMAIN=localhost PROTOCOL=http SECRET_KEY=your_secret_key_here TZ=Asia/Shanghai # Database Configuration POSTGRES_DB=flowo_logs POSTGRES_USER=flowo POSTGRES_PASSWORD=flowo_password POSTGRES_HOST=db # POSTGRES_PORT=5432 # Docker Permissions (Optional) # If not set, containers will run as root to avoid volume mount permission issues. # UID=1000 # GID=1000 # Path Configuration # FLOWO_WORKING_PATH: Local path on host where Snakemake runs and logs are stored. FLOWO_WORKING_PATH=/home/user/flowo-working-path # CONTAINER_MOUNT_PATH: The path inside the container where the host path is mounted. CONTAINER_MOUNT_PATH=/flowo-data # FLOWO_HOST: The external URL of this server (defaults to PROTOCOL://DOMAIN:PORT). # FLOWO_HOST=http://localhost:3100 # Security Settings BACKEND_CORS_ORIGINS=["*"]