- New /proxmox-lxc skill: create, configure, and manage LXC containers on Proxmox servers via API and SSH - Includes Node.js/Docker base setup, Nginx reverse proxy templates - Integrated into /ssh-deploy and /workflow orchestrator - New workflow: /workflow provision for full LXC + deploy pipeline - Added PVE config section to project.env.template Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
57 lines
1.5 KiB
Plaintext
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-12-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
|