-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.template
More file actions
45 lines (34 loc) · 1.51 KB
/
Copy path.env.template
File metadata and controls
45 lines (34 loc) · 1.51 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# This file is a template for environment variables.
# Create a copy named '.env' and fill in your actual values.
# GitHub OAuth 2.0 Credentials
GITHUB_CLIENT_ID=your_github_client_id_here
GITHUB_CLIENT_SECRET=your_github_client_secret_here
# Google OAuth 2.0 Credentials
GOOGLE_CLIENT_ID=your_google_client_id_here
GOOGLE_CLIENT_SECRET=your_google_client_secret_here
# Discord OAuth 2.0 Credentials
DISCORD_CLIENT_ID=your_discord_client_id_here
DISCORD_CLIENT_SECRET=your_discord_client_secret_here
# JWT Key for authentication
JWT_KEY=your_jwt_secret_key_here
# (Optional) Comma-separated list of emails for users who should have super-admin privileges.
# If empty, the first user to register will become the super-admin.
# Example: SUPER_ADMINS=admin@example.com,ceo@example.com
SUPER_ADMINS=
# Frontend Redirect URL
FRONTEND_REDIRECT_URL=http://localhost:3000
# ASP.NET Core Environment (e.g., Development, Staging, Production)
ASPNETCORE_ENVIRONMENT=Development
# Maximum number of teams a regular user can create
MAX_TEAMS_PER_USER=2
# URL de redirection (Developpement)
Authentication__GitHub__CallbackRedirectUri=http://localhost:5000/signin-github
# Frontend Environment Variables
# URL of the GitHub repository for bug reporting (Optional)
# Must be set at build time for Docker, or in .env for local dev
VITE_GITHUB_REPO_URL=
# Other sensitive variables can be added here
# For example:
# ASPNETCORE_ENVIRONMENT=Development
# DatabaseProvider=SQLite
# ConnectionStrings__SQLiteConnection=Data Source=/app/data/nikoniko.db