2019-05-29 19:09:44 +04:30
|
|
|
# App port to run on
|
|
|
|
PORT=3000
|
|
|
|
|
|
|
|
# The domain that this website is on
|
2019-06-01 18:01:32 +04:30
|
|
|
DEFAULT_DOMAIN="localhost:3000"
|
2019-05-29 19:09:44 +04:30
|
|
|
|
|
|
|
# Neo4j database credential details
|
|
|
|
DB_URI="bolt://localhost"
|
|
|
|
DB_USERNAME=
|
|
|
|
DB_PASSWORD=
|
|
|
|
|
|
|
|
# Redis host and port
|
|
|
|
REDIS_DISABLED=false
|
|
|
|
REDIS_HOST="127.0.0.1"
|
|
|
|
REDIS_PORT=6379
|
|
|
|
REDIS_PASSWORD=
|
|
|
|
|
|
|
|
# The daily limit for each user
|
|
|
|
USER_LIMIT_PER_DAY=50
|
|
|
|
|
2019-06-15 17:46:33 +04:30
|
|
|
# Create a cooldown for non-users in minutes
|
|
|
|
# Set 0 to disable
|
|
|
|
NON_USER_COOLDOWN=0
|
|
|
|
|
2019-05-29 19:09:44 +04:30
|
|
|
# A passphrase to encrypt JWT. Use a long and secure key.
|
|
|
|
JWT_SECRET=securekey
|
|
|
|
|
|
|
|
# Admin emails so they can access admin actions on settings page
|
|
|
|
# Comma seperated
|
|
|
|
ADMIN_EMAILS=
|
|
|
|
|
|
|
|
# Invisible reCaptcha secret key
|
|
|
|
# Create one in https://www.google.com/recaptcha/intro/
|
2019-06-01 18:01:32 +04:30
|
|
|
RECAPTCHA_SITE_KEY=
|
2019-05-29 19:09:44 +04:30
|
|
|
RECAPTCHA_SECRET_KEY=
|
|
|
|
|
|
|
|
# Google Cloud API to prevent from users from submitting malware URLs.
|
|
|
|
# Get it from https://developers.google.com/safe-browsing/v4/get-started
|
|
|
|
GOOGLE_SAFE_BROWSING_KEY=
|
|
|
|
|
|
|
|
# Google Analytics tracking ID for universal analytics.
|
|
|
|
# Example: UA-XXXX-XX
|
|
|
|
GOOGLE_ANALYTICS=
|
|
|
|
|
|
|
|
# Your email host details to use to send verification emails.
|
|
|
|
# More info on http://nodemailer.com/
|
|
|
|
# Mail from example "Kutt <support@kutt.it>". Leave empty to use MAIL_USER
|
|
|
|
MAIL_HOST=
|
2019-06-01 18:01:32 +04:30
|
|
|
MAIL_PORT=
|
2019-05-29 19:09:44 +04:30
|
|
|
MAIL_SECURE=
|
|
|
|
MAIL_USER=
|
|
|
|
MAIL_FROM=
|
|
|
|
MAIL_PASSWORD=
|
|
|
|
|
|
|
|
# The email address that will receive submitted reports.
|
|
|
|
REPORT_MAIL=
|
|
|
|
|
|
|
|
# Support email to show on the app
|
|
|
|
CONTACT_EMAIL=
|