aboutsummaryrefslogtreecommitdiffstats
path: root/.env.example
diff options
context:
space:
mode:
authorLibravatar Vijay A <vraravam@users.noreply.github.com>2022-12-11 19:53:28 +0530
committerLibravatar Vijay A <vraravam@users.noreply.github.com>2022-12-11 19:53:42 +0530
commitc9149558d4b8400839a4a65420bff77db962c53a (patch)
treead7305e591e5e81a502084929eb45559d7602461 /.env.example
parent1.3.12 [skip ci] (diff)
downloadferdium-server-c9149558d4b8400839a4a65420bff77db962c53a.tar.gz
ferdium-server-c9149558d4b8400839a4a65420bff77db962c53a.tar.zst
ferdium-server-c9149558d4b8400839a4a65420bff77db962c53a.zip
Fix the necessary env vars for building outside of docker
Diffstat (limited to '.env.example')
-rw-r--r--.env.example43
1 files changed, 18 insertions, 25 deletions
diff --git a/.env.example b/.env.example
index 884ab50..a486df9 100644
--- a/.env.example
+++ b/.env.example
@@ -1,38 +1,31 @@
1HOST=127.0.0.1
2PORT=3333
3NODE_ENV=development 1NODE_ENV=development
4
5APP_NAME=Ferdium-server
6APP_URL=localhost 2APP_URL=localhost
7
8CACHE_VIEWS=false
9
10APP_KEY=
11
12DATA_DIR=data
13
14DB_CONNECTION=sqlite 3DB_CONNECTION=sqlite
15DB_HOST=127.0.0.1 4DB_HOST=127.0.0.1
16DB_PORT=3306 5DB_PORT=3306
17DB_USER=root 6DB_USER=root
18DB_PASSWORD= 7DB_PASSWORD=password
19DB_DATABASE=ferdium 8DB_DATABASE=ferdium
20DB_SSL=false 9DB_SSL=false
21
22PUID=1000
23PGID=1000
24
25HASH_DRIVER=bcrypt
26
27IS_CREATION_ENABLED=true
28IS_DASHBOARD_ENABLED=true
29IS_REGISTRATION_ENABLED=true
30CONNECT_WITH_FRANZ=true
31
32MAIL_CONNECTION=smtp 10MAIL_CONNECTION=smtp
33SMTP_PORT=2525
34SMTP_HOST=127.0.0.1 11SMTP_HOST=127.0.0.1
12SMTP_PORT=2525
13MAIL_SSL=false
35MAIL_USERNAME=username 14MAIL_USERNAME=username
36MAIL_PASSWORD=password 15MAIL_PASSWORD=password
37MAIL_SENDER=noreply@ferdium.org 16MAIL_SENDER=noreply@ferdium.org
38MAIL_SSL=true 17IS_CREATION_ENABLED=true
18IS_DASHBOARD_ENABLED=true
19IS_REGISTRATION_ENABLED=true
20CONNECT_WITH_FRANZ=false
21DATA_DIR=data
22PUID=1000
23PGID=1000
24
25# These are needed if running outside of Docker
26APP_KEY= # Need to set some value
27HOST=127.0.0.1
28PORT=3333
29
30# These have defaults hard-coded, but are being overridden
31CACHE_VIEWS=false