mirror of
https://github.com/claudehohl/Stikked.git
synced 2025-04-25 20:41:20 -05:00
This now allows ANY Stikked configuration variable to be overridden by environment variables.
27 lines
804 B
Plaintext
27 lines
804 B
Plaintext
MYSQL_ROOT_PASSWORD=thisREALLYshouldBEchanged
|
|
MYSQL_DATABASE=stikked
|
|
MYSQL_USER=stikked
|
|
MYSQL_PASSWORD=stikked
|
|
|
|
STIKKED_SITE_NAME=Stikked
|
|
STIKKED_BASE_URL=http:\/\/stikked.local\/
|
|
|
|
# This should match the database container name
|
|
STIKKIT_DB_HOSTNAME=db
|
|
|
|
# These do NOT need to be set, as they will be inherited from
|
|
# the MYSQL_DATABASE settings above. However, you can set them
|
|
# if you are using a seperately managed database.
|
|
#STIKKIT_DB_DATABASE=stikked
|
|
#STIKKIT_DB_USERNAME=stikked
|
|
#STIKKIT_DB_PASS=stikked
|
|
|
|
# Other random examples
|
|
STIKKIT_DISALLOW_SEARCH_ENGINES="true"
|
|
STIKKIT_JS_EDITOR="codemirror"
|
|
|
|
# Example of enabling CAPTCHA
|
|
#STIKKIT_ENABLE_CAPTCHA="true"
|
|
#STIKKIT_RECAPTCHA_PUBLICKEY="_replace_this_with_your_public_key_"
|
|
#STIKKIT_RECAPTCHA_PRIVATEKEY="_replace_this_with_your_private_key_"
|