.env.example
Set these on your host before deploying. Each platform has an “Environment Variables” section in the deploy flow. (showing first 20, more exist in .env.example)
APP_SECRET_TOKEN
secret
Replace the following with the output from "rake secret"
DOMAIN
This is the domain where your Huginn instance will be running. The default should work for development, but it needs to be changed to your…
PORT
DATABASE_ADAPTER
DATABASE_ENCODING
DATABASE_RECONNECT
DATABASE_NAME
DATABASE_POOL
DATABASE_USERNAME
DATABASE_PASSWORD
secret
FORCE_SSL
Should Rails force all requests to use SSL?
INVITATION_CODE
This invitation code will be required for users to signup with your Huginn installation. You can see its use in user.rb. PLEASE CHANGE THIS!
SKIP_INVITATION_CODE
If you don't want to require new users to have an invitation code in order to sign up, set this to true.
REQUIRE_CONFIRMED_EMAIL
If you'd like to require new users to confirm their email address after sign up, set this to true.
ALLOW_UNCONFIRMED_ACCESS_FOR
If REQUIRE_CONFIRMED_EMAIL is true, set this to the duration in which a user needs to confirm their email address.
CONFIRM_WITHIN
Duration for which the above confirmation token is valid
MIN_PASSWORD_LENGTH
secret
Minimum password length
RESET_PASSWORD_WITHIN
secret
Duration for which the reset password token is valid
LOCK_STRATEGY
Set to 'failed_attempts' to lock user accounts for the UNLOCK_AFTER period they fail MAX_FAILED_LOGIN_ATTEMPTS login attempts. Set to…
MAX_FAILED_LOGIN_ATTEMPTS
After how many failed login attempts the account is locked when LOCK_STRATEGY is set to failed_attempts.