-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env
More file actions
79 lines (68 loc) · 3.07 KB
/
Copy path.env
File metadata and controls
79 lines (68 loc) · 3.07 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
COMPOSE_PROJECT_NAME=ai-reolen
COMPOSE_DOMAIN=ai-reolen.local.itkdev.dk
ITKDEV_TEMPLATE=symfony-8
# In all environments, the following files are loaded if they exist,
# the latter taking precedence over the former:
#
# * .env contains default values for the environment variables needed by the app
# * .env.local uncommitted file with local overrides
# * .env.$APP_ENV committed environment-specific defaults
# * .env.$APP_ENV.local uncommitted environment-specific overrides
#
# Real environment variables win over .env files.
#
# DO NOT DEFINE PRODUCTION SECRETS IN THIS FILE NOR IN ANY OTHER COMMITTED FILES.
# https://symfony.com/doc/current/configuration/secrets.html
#
# Run "composer dump-env prod" to compile .env files for production use (requires symfony/flex >=1.2).
# https://symfony.com/doc/current/best_practices.html#use-environment-variables-for-infrastructure-configuration
###> symfony/framework-bundle ###
APP_ENV=dev
APP_SECRET=
APP_SHARE_DIR=var/share
###< symfony/framework-bundle ###
###> symfony/routing ###
# Configure how to generate URLs in non-HTTP contexts, such as CLI commands.
# See https://symfony.com/doc/current/routing.html#generating-urls-in-commands
DEFAULT_URI=http://localhost
###< symfony/routing ###
###> brand identity ###
BRAND_NAME="AI Bibliotek"
BRAND_TAGLINE="del & hjemtag assistenter"
BRAND_INITIALS="AI"
###< brand identity ###
###> doctrine/doctrine-bundle ###
DATABASE_URL="mysql://db:db@mariadb:3306/db?serverVersion=10.11.16-MariaDB&charset=utf8mb4"
###< doctrine/doctrine-bundle ###
###> symfony/lock ###
# Choose one of the stores below
# postgresql+advisory://db_user:db_password@localhost/db_name
LOCK_DSN=flock
###< symfony/lock ###
###> registration ###
# Comma-separated list of email domains accepted by anonymous self-signup.
# Leave empty to reject every domain (no public registration). Whitespace and
# blank entries are tolerated, so `aarhus.dk, kk.dk` and `aarhus.dk,kk.dk`
# parse identically. Override per environment via .env.<env> or .env.local.
REGISTRATION_ALLOWED_EMAIL_DOMAINS=
###< registration ###
###> symfony/mailer ###
MAILER_DSN=smtp://mail:1025
###< symfony/mailer ###
# Sender address used for outbound mail. Override per deploy.
# Format: "Display name <local@domain>" or "local@domain".
MAILER_FROM=
# Anti-flood limits on POST /register. Tune to deployment traffic; defaults
# are starting points (per-IP keeps a single source in check, system-wide
# caps a coordinated burst).
REGISTRATION_RATE_LIMIT_PER_IP=10
REGISTRATION_RATE_LIMIT_SYSTEM=100
# Deploy-time list of supported assistant frameworks. Comma-separated
# "Readable Name:machine_name" pairs. The first entry is the install-wide
# default new organisations pre-select in /admin/organizations/new. Machine
# names are stored on Organization + Assistant rows; readable names are
# display-only.
SUPPORTED_FRAMEWORKS="Open WebUI:openwebui"
# Deploy-time list of supported language models. Comma-separated.
# The list is backed by additional models found in assistant DB table.
SUPPORTED_LANGUAGE_MODELS="Mistral 24b,GPT-OSS-120B,Gemma 4,Qwen3.5-122b"