aboutsummaryrefslogtreecommitdiffstats
path: root/docker/root/defaults/.env.example
diff options
context:
space:
mode:
authorLibravatar Michal Kostewicz <m.kostewicz84@gmail.com>2021-02-05 19:18:05 +0100
committerLibravatar Michal Kostewicz <m.kostewicz84@gmail.com>2021-02-07 10:20:38 +0100
commit8337e2632686cf8d0dcf39474019370f7d3dc752 (patch)
tree7adac5b63d03aff8d81ab1250fa54d3007e51b41 /docker/root/defaults/.env.example
parentMerge pull request #47 from cromefire/db-path (diff)
downloadferdium-server-8337e2632686cf8d0dcf39474019370f7d3dc752.tar.gz
ferdium-server-8337e2632686cf8d0dcf39474019370f7d3dc752.tar.zst
ferdium-server-8337e2632686cf8d0dcf39474019370f7d3dc752.zip
Moved getferdi/server-docker into getferdi/server repository.
Add sample docker-compose file and update README.md files in root and docker directories.
Diffstat (limited to 'docker/root/defaults/.env.example')
-rwxr-xr-xdocker/root/defaults/.env.example35
1 files changed, 35 insertions, 0 deletions
diff --git a/docker/root/defaults/.env.example b/docker/root/defaults/.env.example
new file mode 100755
index 0000000..2ed73dc
--- /dev/null
+++ b/docker/root/defaults/.env.example
@@ -0,0 +1,35 @@
1HOST=0.0.0.0
2PORT=80
3NODE_ENV=development
4
5APP_NAME=AdonisJs
6APP_URL=http://${EXTERNAL_DOMAIN}
7EXTERNAL_DOMAIN=ferdi.domain.tld
8
9CACHE_VIEWS=false
10
11APP_KEY=appkey
12
13DB_CONNECTION=sqlite
14DB_HOST=127.0.0.1
15DB_PORT=3306
16DB_USER=root
17DB_PASSWORD=password
18DB_DATABASE=adonis
19
20DB_SSL=false
21
22HASH_DRIVER=bcrypt
23
24IS_CREATION_ENABLED=true
25IS_DASHBOARD_ENABLED=true
26IS_REGISTRATION_ENABLED=true
27CONNECT_WITH_FRANZ=true
28
29MAIL_CONNECTION=smtp
30SMTP_PORT=2525
31SMTP_HOST=127.0.0.1
32MAIL_USERNAME=username
33MAIL_PASSWORD=password
34MAIL_SENDER=noreply@getferdi.com
35MAIL_SSL=false