.env.sample 541 B

1234567891011121314151617181920212223
  1. SESSION_SECRET='example'
  2. // DB_path to MongoDB, matching collection, user and password
  3. // 27017 is the standard port of MongoDB
  4. // DB_PATH='mongodb://libreflix:PASSWORD@database:27017/libreflix'
  5. DB_PATH='mongodb://database:27017'
  6. // Facebook Integration
  7. FACEBOOK_ID='1221244648022130'
  8. FACEBOOK_SECRET='example'
  9. // Twitter Integration
  10. TWITTER_KEY='example'
  11. TWITTER_SECRET='example'
  12. // GitHub Integration
  13. GITHUB_ID='example'
  14. GITHUB_SECRET='example'
  15. // If you use MailGun to send mail
  16. MAILGUN_USERNAME='example'
  17. MAILGUN_PASSWORD='example'