10 wiederverwendbare Claude Code Skills für React + Node.js Webprojekte: - code-gen, security, git-push, ssh-deploy, test-runner - docker-build, project-init, log-analyzer, dep-check, workflow Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
44 lines
1.2 KiB
Plaintext
44 lines
1.2 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
|
|
|
|
# -------------------------------------------
|
|
# TECH-STACK
|
|
# -------------------------------------------
|
|
FRONTEND_PORT=3000
|
|
BACKEND_PORT=4000
|
|
|
|
# -------------------------------------------
|
|
# DATABASE
|
|
# -------------------------------------------
|
|
DB_TYPE=postgresql
|
|
DB_HOST=localhost
|
|
DB_PORT=5432
|
|
DB_NAME=myapp
|