Add environment variables for GitHub, GitLab, Gitea, and allowed hosts configuration

This commit is contained in:
2026-05-28 19:53:33 +02:00
parent 342490035b
commit 3a42bec2b7
4 changed files with 128 additions and 100 deletions
+18
View File
@@ -1,3 +1,21 @@
APP_ENV=prod
APP_DEBUG=0
APP_SECRET=changeme_replace_with_random_32char_string
# Comma-separated list of allowed hostnames. Leave empty to allow all hosts.
# Example: ALLOWED_HOSTS=example.com,www.example.com
ALLOWED_HOSTS=
# GitHub
GITHUB_USER=
GITHUB_TOKEN=
# GitLab (leave GITLAB_URL empty to use https://gitlab.com)
GITLAB_USER=
GITLAB_TOKEN=
GITLAB_URL=
# Gitea
GITEA_USER=
GITEA_TOKEN=
GITEA_URL=