-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
28 lines (22 loc) · 917 Bytes
/
.env.example
File metadata and controls
28 lines (22 loc) · 917 Bytes
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
# Docker Registry Configuration (Gitea container registry)
REGISTRY=localhost:3000/gitea
IMAGE=gigi/gigi
TAG=latest
# Database Configuration (required — external PostgreSQL)
DATABASE_URL=postgresql://gigi:password@postgres:5432/gigi
# AIO Configuration
# Gitea admin credentials (created on first boot)
ADMIN_USER=admin
ADMIN_PASSWORD=admin
ORG_NAME=idea
# External URL (used for Gitea ROOT_URL and SSH config)
# GIGI_INSTANCE_URL=https://your-domain.com
# Optional: Telegram bot token (get from @BotFather)
# TELEGRAM_BOT_TOKEN=
# Optional: Override to use external services instead of AIO built-ins
# GITEA_URL=http://your-gitea:3000 # Skip internal Gitea
# CHROME_CDP_URL=ws://your-chrome:9222 # Skip internal Chrome
# Vite Dev Proxy (for local frontend development)
# Point these to the live Gigi app to develop against real data
# GIGI_API_URL=http://localhost:3100
# GIGI_WS_URL=ws://localhost:3101