Compare commits

...

2 Commits

Author SHA1 Message Date
77ef2a9ae6 more fucking import fixes
Some checks are pending
CI Pipeline / Run Tests (push) Waiting to run
CI Pipeline / Lint Code (push) Waiting to run
CI Pipeline / Security Scan (push) Waiting to run
CI Pipeline / E2E Tests (push) Blocked by required conditions
2025-08-27 15:56:09 -07:00
af56fbedc1 Fix install script to pass domain and email to systemd setup 2025-08-27 15:55:55 -07:00
2 changed files with 2 additions and 3 deletions

3
.gitignore vendored
View File

@ -46,9 +46,8 @@ pids/
# Storage directories # Storage directories
data/ data/
storage/
/data
/storage /storage
/data
# Database files # Database files
*.db *.db

View File

@ -304,7 +304,7 @@ if [ "$ENABLE_MONITORING" = true ] && [ "$USE_EXISTING_MONITORING" = false ]; th
elif [ "$USE_EXISTING_MONITORING" = true ]; then elif [ "$USE_EXISTING_MONITORING" = true ]; then
MONITORING_FLAG="--use-existing-monitoring" MONITORING_FLAG="--use-existing-monitoring"
fi fi
./scripts/setup_systemd.sh $MONITORING_FLAG --skip-build ./scripts/setup_systemd.sh $MONITORING_FLAG --skip-build --domain "$DOMAIN" --email "$EMAIL" $([ "$SKIP_SSL" = true ] && echo "--skip-ssl")
# Step 4: Configure cache (in-memory LRU - no Redis needed) # Step 4: Configure cache (in-memory LRU - no Redis needed)
echo "🧠 Gateway uses in-memory LRU cache (no Redis required)" echo "🧠 Gateway uses in-memory LRU cache (no Redis required)"