diff --git a/.env b/.env new file mode 100644 index 0000000..d7a6a6c --- /dev/null +++ b/.env @@ -0,0 +1,31 @@ +DOMAIN=localhost + +# Configure these with your own Docker registry images +DOCKER_IMAGE_BACKEND=backend +DOCKER_IMAGE_CELERYWORKER=celerywork + +# Backend +BACKEND_CORS_ORIGINS="[\"http://localhost\", \"http://localhost:4200\", \"http://localhost:3000\", \"http://localhost:8080\", \"https://localhost\", \"https://localhost:4200\", \"https://localhost:3000\", \"https://localhost:8080\", \"http://local.dockertoolbox.tiangolo.com\", \"http://localhost.tiangolo.com\"]" +PROJECT_NAME="BeMore" +SECRET_KEY=changethis +SMTP_TLS=True +SMTP_PORT=587 +SMTP_HOST= +SMTP_USER= +SMTP_PASSWORD= +EMAILS_FROM_EMAIL=info@example.com + +USERS_OPEN_REGISTRATION=False + +# PostgreSQL +POSTGRES_USER=bemore +POSTGRES_PASSWORD=changethis +POSTGRES_DB=app + +# PgAdmin +PGADMIN_LISTEN_PORT=5050 +PGADMIN_DEFAULT_EMAIL=admin@example.com +PGADMIN_DEFAULT_PASSWORD=changethis + +# Flower +FLOWER_UNAUTHENTICATED_API=True diff --git a/.gitignore b/.gitignore index 7efee88..10f6182 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,2 @@ .vscode docker-stack.yml -.env