| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- module.exports = {
- PORT: 3000,
- /* The domain that this website is on */
- DEFAULT_DOMAIN: 'kutt.it',
- /* Neo4j database credential details */
- DB_URI: 'bolt://localhost',
- DB_USERNAME: '',
- DB_PASSWORD: '',
- /* The daily limit for each user */
- USER_LIMIT_PER_DAY: 50,
- /* 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
- Array of strings
- */
- ADMIN_EMAILS: [],
- /*
- Invisible reCaptcha secret key
- Create one in https://www.google.com/recaptcha/intro/
- */
- 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: '',
- /*
- Your email host details to use to send verification emails.
- More info on http://nodemailer.com/
- */
- MAIL_HOST: '',
- MAIL_PORT: 587,
- MAIL_SECURE: false,
- MAIL_USER: '',
- MAIL_PASSWORD: '',
- /*
- The email address that will receive submitted reports.
- */
- REPORT_MAIL: '',
- };
|