39 lines
1.1 KiB
Text
39 lines
1.1 KiB
Text
# SGO Configuration
|
|
# Copy this file to .env and customize as needed
|
|
|
|
# ===== User/Group Configuration =====
|
|
# Set these to match your host user ID for proper file permissions
|
|
# Find your IDs with: id -u (PUID) and id -g (PGID)
|
|
PUID=1000
|
|
PGID=1000
|
|
|
|
# ===== AWS Credentials Path (REQUIRED) =====
|
|
# Absolute path to your AWS configuration directory on the host
|
|
# REQUIRED: Must be set to your actual path
|
|
# Example: AWS_CONFIG_PATH=/home/username/.aws
|
|
AWS_CONFIG_PATH=/home/yourusername/.aws
|
|
|
|
# ===== Data Storage =====
|
|
# By default, uses a Docker volume (sgo-data)
|
|
# To use a local directory instead:
|
|
# 1. Edit docker-compose.yml
|
|
# 2. Comment out: - sgo-data:/app/data
|
|
# 3. Uncomment: - ${DATA_PATH:-./data}:/app/data
|
|
# DATA_PATH=./data
|
|
|
|
# ===== Port Configuration =====
|
|
# Port to expose the web interface on
|
|
# Default: 5000
|
|
# SGO_PORT=5000
|
|
|
|
# ===== Debug Mode =====
|
|
# Enable Flask debug mode for detailed logging
|
|
# Options: true, false
|
|
# Default: false
|
|
DEBUG=false
|
|
|
|
# ===== Flask Environment =====
|
|
# Flask environment setting
|
|
# Options: production, development
|
|
# Default: production
|
|
FLASK_ENV=production
|