backend_and_cms/.env

38 lines
946 B
Bash
Raw Normal View History

2024-09-17 12:11:39 +08:00
# Domain
# This would be set to the production domain with an env var on deployment
2024-10-07 18:17:13 +08:00
DOMAIN=https://newserver.develop-cat.com
2024-09-17 12:11:39 +08:00
# Environment: local, staging, production
2024-10-07 10:54:43 +08:00
ENVIRONMENT=staging
2024-09-17 12:11:39 +08:00
2024-10-07 10:54:43 +08:00
PROJECT_NAME="All & One"
STACK_NAME=allandonecms
2024-09-17 12:11:39 +08:00
# Backend
BACKEND_CORS_ORIGINS="http://localhost,http://localhost:5173,https://localhost,https://localhost:5173,http://localhost.tiangolo.com"
SECRET_KEY=iFI0ZUdPVVZp7CNz6nmJYD0gM-xWaia291CWxi2JEaY
2024-10-07 16:58:51 +08:00
FIRST_SUPERUSER=allandone@gmail.com
2024-10-07 10:54:43 +08:00
FIRST_SUPERUSER_PASSWORD=a95825512
2024-09-17 12:11:39 +08:00
# Emails
SMTP_HOST=smtpout.secureserver.net
SMTP_USER=info@develop-cat.com
SMTP_PASSWORD=a95825512
EMAILS_FROM_EMAIL=info@develop-cat.com
SMTP_TLS=True
SMTP_SSL=False
SMTP_PORT=465
# Postgres
POSTGRES_SERVER=localhost
POSTGRES_PORT=5432
POSTGRES_DB=fastapi_db
POSTGRES_USER=admin
POSTGRES_PASSWORD=95825512
SENTRY_DSN=
# Configure these with your own Docker registry images
DOCKER_IMAGE_BACKEND=backend
DOCKER_IMAGE_FRONTEND=frontend