ki-agenten-toolkit/config/project.env.template
Christian Mueller acceefe99b chore: upgrade to Debian 13 (Trixie), Node.js 22 LTS, PostgreSQL 17
- LXC templates: debian-13-standard (default)
- Docker images: node:22-alpine, postgres:17-alpine
- TypeScript target: ES2022
- Updated template references (Ubuntu 24.04, Alpine 3.20)

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-20 22:01:28 +01:00

57 lines
1.5 KiB
Plaintext

# ===========================================
# Projekt-Konfiguration für KI-Agenten
# ===========================================
# Kopiere diese Datei zu project.env und fülle die Werte aus
# WICHTIG: project.env NIEMALS committen!
# -------------------------------------------
# PROJEKT-INFO
# -------------------------------------------
PROJECT_NAME=mein-projekt
PROJECT_TYPE=fullstack
# -------------------------------------------
# GITEA (git.cynfo.net)
# -------------------------------------------
GITEA_URL=https://git.cynfo.net
GITEA_USER=
GITEA_TOKEN=
# Token erstellen: https://git.cynfo.net/user/settings/applications
# Scopes: repo, write:issue, write:pull-request
# -------------------------------------------
# SSH DEPLOYMENT
# -------------------------------------------
SSH_HOST=
SSH_PORT=22
SSH_USER=deploy
SSH_KEY_PATH=~/.ssh/id_rsa
DEPLOY_PATH=/var/www/app
# -------------------------------------------
# PROXMOX (LXC-Container)
# -------------------------------------------
PVE_HOST=
PVE_PORT=8006
PVE_USER=root@pam
PVE_TOKEN_ID=
PVE_TOKEN_SECRET=
PVE_NODE=pve
PVE_STORAGE=local-lvm
LXC_TEMPLATE=debian-13-standard
# Token erstellen: Datacenter > Permissions > API Tokens
# -------------------------------------------
# TECH-STACK
# -------------------------------------------
FRONTEND_PORT=3000
BACKEND_PORT=4000
# -------------------------------------------
# DATABASE
# -------------------------------------------
DB_TYPE=postgresql
DB_HOST=localhost
DB_PORT=5432
DB_NAME=myapp