bonfire-app/flavours/classic/config/templates/public.env

33 lines
1.2 KiB
Bash
Raw Normal View History

2022-05-23 02:20:39 +00:00
## PUBLIC CONFIG VARIABLES
2021-05-05 08:05:51 +00:00
FLAVOUR=classic
2021-04-20 13:07:54 +00:00
# COPY this file to /config/{dev|prod}/public.env and change any values as required
# server domain name:
HOSTNAME=localhost
# server port:
2021-06-01 12:44:06 +00:00
SERVER_PORT=4000
# port your visitors will access (typically 80 or 443, will be different than SERVER_PORT only if using a reverse proxy)
PUBLIC_PORT=4000
2021-06-19 14:22:13 +00:00
# what service to use for sending out emails (eg. smtp, mailgun, none) NOTE: you should also set the corresponding keys in secrets.env
MAIL_BACKEND=none
2021-04-20 13:07:54 +00:00
# hostname and port of meili search index
2021-06-06 11:41:45 +00:00
SEARCH_MEILI_INSTANCE=http://localhost:7700
2021-04-20 13:07:54 +00:00
# require an email address to be invited before being able to sign up
INVITE_ONLY=true
# a name and tagline for your instance
2021-05-22 14:36:40 +00:00
INSTANCE_DESCRIPTION="An instance of Bonfire, a federated app ecosystem for open and cooperative networks"
2021-04-20 13:07:54 +00:00
# uncomment in order to NOT automatically change the database schema when you upgrade the app
# DISABLE_DB_AUTOMIGRATION=true
# max file upload size (default is 20 meg)
UPLOAD_LIMIT=20000000
# ====================================
# You should not have to edit any of the following ones:
2021-05-13 21:56:55 +00:00
POSTGRES_HOST=localhost
2021-12-12 18:44:34 +00:00
DB_DOCKER_IMAGE=postgres:12-alpine
2021-04-20 13:07:54 +00:00
LANG=en_US.UTF-8
REPLACE_OS_VARS=true
LIVEVIEW_ENABLED=true
2022-01-13 11:24:23 +00:00
SHOW_DEBUG_IN_DEV=true
2021-04-20 13:07:54 +00:00
ACME_AGREE=true
2022-05-23 02:20:39 +00:00