first commit

This commit is contained in:
Roger Oriol
2026-02-03 23:50:19 +01:00
commit 87fb32b559
80 changed files with 8884 additions and 0 deletions

24
k8s/secret.yaml.example Normal file
View File

@@ -0,0 +1,24 @@
apiVersion: v1
kind: Secret
metadata:
name: myorg-assistant-secret
namespace: default
type: Opaque
stringData:
# Discord Bot Token
DISCORD_BOT_TOKEN: "your-discord-bot-token-here"
DISCORD_CHANNEL_ID: "your-discord-channel-id-here"
# LiteLLM API Key
LITELLM_API_KEY: "your-litellm-api-key-here"
# Git Credentials
GIT_REPO_URL: "https://github.com/yourusername/myorg.git"
GIT_USERNAME: "your-github-username"
GIT_TOKEN: "your-github-token-here"
# Web Interface Secret Key
WEB_SECRET_KEY: "your-secret-key-here"
# Optional: Web Password for basic auth
WEB_PASSWORD: "your-web-password-here"