This repository was archived by the owner on Mar 9, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env
More file actions
48 lines (37 loc) · 1.43 KB
/
Copy path.env
File metadata and controls
48 lines (37 loc) · 1.43 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# Docker Project Configuration
# ----------------------------
# COMPOSE_PROJECT_NAME Name of the Docker Compose project
COMPOSE_PROJECT_NAME=synui_dockerized
# Application Paths
# -----------------
# WWW_PATH Path to the web root (relative to project)
WWW_PATH=
# PostgreSQL Database Configuration
# ---------------------------------
# POSTGRES_DB Database name
# POSTGRES_USER Database username
# POSTGRES_PASSWORD Database password
POSTGRES_DB=synui_db
POSTGRES_USER=synui_db
POSTGRES_PASSWORD=sfx
# System Configuration
# --------------------
# TIMEZONE System timezone (e.g., Europe/Istanbul)
TIMEZONE=Europe/Istanbul
# PHP / Server Configuration
# --------------------------
# SERVER Type of PHP server to use:
# - 'fpm' for Nginx
# - 'apache' for Apache (if used)
# PHP_VERSION PHP version to use in Docker (e.g., 8.4)
SERVER=fpm
PHP_VERSION=8.5
# LLM Manager Configuration
# -------------------------
# LLM_MANAGER Specifies which LLM manager to use (available for: ollama or llama-swap, we're recommended llama-swap)
# UTILIZATION Resource type for LLM usage:
# - 'cpu' → Use CPU
# - 'gpu' → Use GPU (if supported)
# - 'cuda' → Use NVIDIA GPU and AMD GPU or CPU (JUST FOR llama-swap)
LLM_MANAGER=llama-swap
UTILIZATION=cuda