.env 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. DOMAIN=localhost
  2. SERVER_ADDRESS=http://localhost
  3. # DOMAIN=local.dockertoolbox.tiangolo.com
  4. # DOMAIN=localhost.tiangolo.com
  5. # DOMAIN=dev.ai-anchor.com
  6. STACK_NAME=ai-anchor-com
  7. TRAEFIK_PUBLIC_NETWORK=traefik-public
  8. TRAEFIK_TAG=ai-anchor.com
  9. TRAEFIK_PUBLIC_TAG=traefik-public
  10. DOCKER_IMAGE_BACKEND=backend
  11. DOCKER_IMAGE_CELERYWORKER=celeryworker
  12. DOCKER_IMAGE_FRONTEND=frontend
  13. # Backend
  14. BACKEND_CORS_ORIGINS=["https://cloud.choozmo:8080",
  15. "http://cloud.choozmo.com:8080",
  16. "https://cloud.choozmo.com",
  17. "http://cloud.choozmo.com",
  18. "http://local.ai-anchor.com:5173",
  19. "http://local.ai-anchor.com:8080",
  20. "http://localhost",
  21. "http://localhost:4200",
  22. "http://localhost:3000",
  23. "http://localhost:5173",
  24. "http://localhost:8080",
  25. "https://localhost",
  26. "https://localhost:4200",
  27. "https://localhost:3000",
  28. "https://localhost:8080",
  29. "http://dev.ai-anchor.com:3000",
  30. "http://dev.ai-anchor.com:5173",
  31. "http://dev.ai-anchor.com:8080",
  32. "https://stag.ai-anchor.com",
  33. "https://ai-anchor.com"]
  34. PROJECT_NAME=AI anchor
  35. SECRET_KEY=1df1f2180c7b2550e76a8ccf5e67a76e5321d8c2d3fee4a725f8b80baf9a0c91
  36. FIRST_SUPERUSER=admin@ai-anchor.com
  37. FIRST_SUPERUSER_PASSWORD=password
  38. SMTP_TLS=True
  39. SMTP_PORT=587
  40. SMTP_HOST=
  41. SMTP_USER=
  42. SMTP_PASSWORD=
  43. EMAILS_FROM_EMAIL=info@ai-anchor.com
  44. USERS_OPEN_REGISTRATION=True
  45. BACKEND_ZIP_STORAGE=backend_storage/zips
  46. BACKEND_VIDEO_STORAGE=backend_storage/videos
  47. SENTRY_DSN=
  48. # Flower
  49. FLOWER_BASIC_AUTH=admin:password
  50. # Postgres
  51. POSTGRES_SERVER=db
  52. POSTGRES_USER=postgres
  53. POSTGRES_PASSWORD=password
  54. POSTGRES_DB=app
  55. # PgAdmin
  56. PGADMIN_LISTEN_PORT=5050
  57. PGADMIN_DEFAULT_EMAIL=admin@ai-anchor.com
  58. PGADMIN_DEFAULT_PASSWORD=password
  59. # Initial data
  60. MEMBERSHIP_TYPES=["normal", "infinite"]
  61. PROGRESS_TYPES=["waiting", "processing", "completed"]
  62. # celery
  63. CELERY_ZIP_STORAGE=celery_storage/zips
  64. CELERY_VIDEO_STORAGE=celery_storage/videos