.env.example 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. # ==== Required configuration settings for Huginn ====
  2. # Replace the following with the output from "rake secret"
  3. APP_SECRET_TOKEN=REPLACE_ME_NOW!
  4. # This is the domain where your Huginn instance will be running. The default should work
  5. # for development, but it needs to be changed when you deploy to a production environment.
  6. DOMAIN=localhost:3000
  7. # Database Setup
  8. DATABASE_ADAPTER=mysql2
  9. DATABASE_ENCODING=utf8
  10. DATABASE_RECONNECT=true
  11. DATABASE_NAME=huginn_development
  12. DATABASE_POOL=5
  13. DATABASE_USERNAME=root
  14. DATABASE_PASSWORD=
  15. DATABASE_SOCKET=/tmp/mysql.sock
  16. # ==== Additional required production settings ====
  17. # Outgoing email settings. To use Gmail or Google Apps, put your Google Apps domain or gmail.com
  18. # as the SMTP_DOMAIN and your Gmail username and password as the SMTP_USER_NAME and SMTP_PASSWORD.
  19. SMTP_DOMAIN=your-domain-here.com
  20. SMTP_USER_NAME=you@gmail.com
  21. SMTP_PASSWORD=somepassword
  22. SMTP_SERVER=smtp.gmail.com
  23. SMTP_PORT=587
  24. SMTP_AUTHENTICATION=plain
  25. SMTP_ENABLE_STARTTLS_AUTO=true
  26. # The address from which system emails will appear to be sent.
  27. EMAIL_FROM_ADDRESS=from_address@gmail.com
  28. # This invitation code will be required for users to signup with your Huginn installation.
  29. # You can see its use in user.rb.
  30. INVITATION_CODE=try-huginn