config.env.example 553 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. #
  2. # yt-local options
  3. #
  4. WEB_SITE_URL='http://example.org'
  5. APP_DEBUG=True
  6. SECRET_KEY=2q75bebg(9fn4ldkc7&*155kwp14donetc)p5-vut1hvlh&e%-
  7. #
  8. # DataBase
  9. #
  10. NAME_DB=personalsite
  11. USER_DB=postgres
  12. PASS_DB=postgres
  13. HOST_DB=172.23.0.5
  14. PORT_DB=5432
  15. #
  16. # E-mail options
  17. #
  18. # Incoming Email
  19. EMAIL_FROM=noreply@example.com
  20. EMAIL_TO=user@example.com
  21. EMAIL_HOST=smtp.example.com
  22. EMAIL_HOST_USER=username
  23. EMAIL_HOST_PASSWORD=password
  24. EMAIL_HOST_PORT=587
  25. EMAIL_USE_TLS=True
  26. #
  27. # Gunicorn options
  28. #
  29. GUNICORN_PORT_NUMBER=8080
  30. GUNICORN_NUM_WORKERS=4
  31. GUNICORN_TIMEOUT=120