1234567891011121314151617181920212223 |
- SESSION_SECRET='example'
- // DB_path to MongoDB, matching collection, user and password
- // 27017 is the standard port of MongoDB
- DB_PATH='mongodb://libreflix:PASSWORD@localhost:27017/libreflix'
- // Facebook Integration
- FACEBOOK_ID='1221244648022130'
- FACEBOOK_SECRET='example'
- // Twitter Integration
- TWITTER_KEY='example'
- TWITTER_SECRET='example'
- // GitHub Integration
- GITHUB_ID='example'
- GITHUB_SECRET='example'
- // If you use MailGun to send mail
- MAILGUN_USERNAME='example'
- MAILGUN_PASSWORD='example'
|