.env 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. DOMAIN=cloud.choozmo.com
  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=gpuceleryworker
  12. DOCKER_IMAGE_FRONTEND=frontend
  13. # Backend
  14. BACKEND_CORS_ORIGINS=["http://cmm.ai:3001", "https://payment.ecpay.com.tw", "https://vendor-stage.ecpay.com.tw","http://dev.cloud.choozmo.com:5173", "http://dev.cloud.choozmo.com:8080", "http://cloud.choozmo.com:8080", "https://cloud.choozmo.com", "http://cloud.choozmo.com","http://172.105.219.42", "http://local.ai-anchor.com:5173", "http://local.ai-anchor.com:8080", "http://localhost", "http://localhost:4200", "http://localhost:3000", "http://localhost:5173", "http://localhost:8080", "https://localhost", "https://localhost:4200", "https://localhost:3000", "https://localhost:8080", "http://dev.ai-anchor.com:3000", "http://dev.ai-anchor.com:5173", "http://dev.ai-anchor.com:8080", "https://stag.ai-anchor.com", "https://ai-anchor.com"]
  15. PROJECT_NAME=AI anchor
  16. SECRET_KEY=1df1f2180c7b2550e76a8ccf5e67a76e5321d8c2d3fee4a725f8b80baf9a0c91
  17. FIRST_SUPERUSER=admin@ai-anchor.com
  18. FIRST_SUPERUSER_PASSWORD=password
  19. SMTP_TLS=True
  20. SMTP_PORT=587
  21. SMTP_HOST=smtp.gmail.com
  22. SMTP_USER=verify@choozmo.com
  23. SMTP_PASSWORD=hlmaxzjnvpeaulhw
  24. EMAILS_FROM_EMAIL=info@ai-anchor.com
  25. USERS_OPEN_REGISTRATION=True
  26. BACKEND_ZIP_STORAGE=backend_storage/zips
  27. BACKEND_VIDEO_STORAGE=backend_storage/videos
  28. SENTRY_DSN=
  29. # Flower
  30. FLOWER_BASIC_AUTH=admin:password
  31. # Postgres
  32. POSTGRES_SERVER=db
  33. POSTGRES_USER=postgres
  34. POSTGRES_PASSWORD=password
  35. POSTGRES_DB=app
  36. # PgAdmin
  37. PGADMIN_LISTEN_PORT=5050
  38. PGADMIN_DEFAULT_EMAIL=admin@ai-anchor.com
  39. PGADMIN_DEFAULT_PASSWORD=password
  40. # Initial data
  41. MEMBERSHIP_STATUS=["normal", "infinite"]
  42. PROGRESS_STATE=["waiting", "processing", "completed", "failed"]
  43. # local storage
  44. LOCAL_ZIP_STORAGE=local_storage/zips
  45. LOCAL_VIDEO_STORAGE=local_storage/videos
  46. # celery
  47. CELERY_ZIP_STORAGE=celery_storage/zips
  48. CELERY_VIDEO_STORAGE=celery_storage/videos