.env.example 1.4KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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_HOST=your-domain-here.com
  16. #DATABASE_PORT=3306
  17. #DATABASE_SOCKET=/tmp/mysql.sock
  18. # ==== Additional required production settings ====
  19. # Configure Rails environment. This should only be needed in production and may cause errors in development.
  20. # RAILS_ENV=production
  21. # Outgoing email settings. To use Gmail or Google Apps, put your Google Apps domain or gmail.com
  22. # as the SMTP_DOMAIN and your Gmail username and password as the SMTP_USER_NAME and SMTP_PASSWORD.
  23. SMTP_DOMAIN=your-domain-here.com
  24. SMTP_USER_NAME=you@gmail.com
  25. SMTP_PASSWORD=somepassword
  26. SMTP_SERVER=smtp.gmail.com
  27. SMTP_PORT=587
  28. SMTP_AUTHENTICATION=plain
  29. SMTP_ENABLE_STARTTLS_AUTO=true
  30. # The address from which system emails will appear to be sent.
  31. EMAIL_FROM_ADDRESS=from_address@gmail.com
  32. # This invitation code will be required for users to signup with your Huginn installation.
  33. # You can see its use in user.rb.
  34. INVITATION_CODE=try-huginn