-
Notifications
You must be signed in to change notification settings - Fork 1
/
.env.template
33 lines (27 loc) · 1.34 KB
/
.env.template
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
# Duplicate this file in your local repo with filename `.env`. It will be ignored by git, but loaded
# by Gradle via a dotenv Gradle plugin and passed to Toolbox to use as instance configs.
# Note that any values provided in this template will never be read - they are there to provide
# example values only. Any uncommented vars in this file *must* be set in a local .env file.
# See the README for more information.
# Required variables - must be set in .env, build will throw if missing.
APP_TOOLBOX_ENVIRONMENT=Development
APP_TOOLBOX_DB_HOST=localhost
APP_TOOLBOX_DB_SCHEMA=toolbox
APP_TOOLBOX_DB_USER=toolbox
APP_TOOLBOX_DB_PASSWORD=toolbox
# Additional DB options
#APP_TOOLBOX_USE_H2=true
#APP_TOOLBOX_DB_CREATE=update
# Bootstrap admin
# The _USER var can be set on its own to grant an OAuth (Auth0) sourced user admin rights in local
# development. This is supported by Toolbox's use of Hoist Core DefaultRoleService.
#APP_TOOLBOX_BOOTSTRAP_ADMIN_USER=
# If the _PASSWORD var is also set, Toolbox will create a password-enabled user in its user
# database that can be used when Auth0 is not available. Pair this with the env below to disable
# the OAuth flow entirely and present a form-based login.
#APP_TOOLBOX_BOOTSTRAP_ADMIN_PASSWORD=
#APP_TOOLBOX_USE_OAUTH=false
# Email support
#APP_TOOLBOX_SMTP_HOST=
#APP_TOOLBOX_SMTP_USER=
#APP_TOOLBOX_SMTP_PASSWORD=