-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
chore(service): complete ENVs in heyform service #5869
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: next
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,14 +15,63 @@ services: | |
keydb: | ||
condition: service_healthy | ||
environment: | ||
- SERVICE_FQDN_HEYFORM_8000 | ||
- APP_HOMEPAGE_URL=${SERVICE_FQDN_HEYFORM} | ||
- SESSION_KEY=${SERVICE_BASE64_64_SESSION} | ||
- FORM_ENCRYPTION_KEY=${SERVICE_BASE64_64_FORM} | ||
- MONGO_URI=mongodb://mongo:27017/heyform | ||
- REDIS_HOST=keydb | ||
- REDIS_PORT=6379 | ||
- REDIS_PASSWORD=${SERVICE_PASSWORD_KEYDB} | ||
- SERVICE_FQDN_HEYFORM_8000 | ||
- APP_HOMEPAGE_URL=${APP_HOMEPAGE_URL} | ||
- SESSION_KEY=${SESSION_KEY} | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The session and other keys should be autogenerated by Coolify magic ENVs. |
||
- FORM_ENCRYPTION_KEY=${FORM_ENCRYPTION_KEY} | ||
- MONGO_URI=${MONGO_URI} | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Fix the |
||
- REDIS_HOST=${REDIS_HOST} | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please fix the Redis details as it will not work like this. |
||
- REDIS_PORT=${REDIS_PORT} | ||
- REDIS_PASSWORD=${REDIS_PASSWORD} | ||
- APP_LISTEN_PORT=${APP_LISTEN_PORT} | ||
- APP_LISTEN_HOSTNAME=${APP_LISTEN_HOSTNAME} | ||
- APP_DISABLE_REGISTRATION=${APP_DISABLE_REGISTRATION} | ||
- COOKIE_MAX_AGE=${COOKIE_MAX_AGE} | ||
- SESSION_MAX_AGE=${SESSION_MAX_AGE} | ||
- UPLOAD_FILE_TYPES=${UPLOAD_FILE_TYPES} | ||
- UPLOAD_FILE_SIZE=${UPLOAD_FILE_SIZE} | ||
- BCRYPT_SALT=${BCRYPT_SALT} | ||
- MONGO_USER=${MONGO_USER} | ||
- MONGO_PASSWORD=${MONGO_PASSWORD} | ||
- MONGO_SSL_CA_PATH=${MONGO_SSL_CA_PATH} | ||
- REDIS_DB=${REDIS_DB} | ||
- VERIFY_USER_EMAIL=${VERIFY_USER_EMAIL} | ||
- SMTP_FROM=${SMTP_FROM} | ||
- SMTP_HOST=${SMTP_HOST} | ||
- SMTP_PORT=${SMTP_PORT} | ||
- SMTP_USER=${SMTP_USER} | ||
- SMTP_SECURE=${SMTP_SECURE} | ||
- SMTP_IGNORE_CERT=${SMTP_IGNORE_CERT} | ||
- SMTP_PASSWORD=${SMTP_PASSWORD} | ||
- GOOGLE_RECAPTCHA_KEY=${GOOGLE_RECAPTCHA_KEY} | ||
- GOOGLE_RECAPTCHA_SECRET=${GOOGLE_RECAPTCHA_SECRET} | ||
- GEETEST4_CAPTCHA_ID=${GEETEST4_CAPTCHA_ID} | ||
- GEETEST4_CAPTCHA_KEY=${GEETEST4_CAPTCHA_KEY} | ||
- AKISMET_KEY=${AKISMET_KEY} | ||
- APPLE_LOGIN_TEAM_ID=${APPLE_LOGIN_TEAM_ID} | ||
- APPLE_LOGIN_WEB_CLIENT_ID=${APPLE_LOGIN_WEB_CLIENT_ID} | ||
- APPLE_LOGIN_KEY_ID=${APPLE_LOGIN_KEY_ID} | ||
- APPLE_LOGIN_PRIVATE_KEY_PATH=${APPLE_LOGIN_PRIVATE_KEY_PATH} | ||
- GOOGLE_LOGIN_CLIENT_ID=${GOOGLE_LOGIN_CLIENT_ID} | ||
- GOOGLE_LOGIN_CLIENT_SECRET=${GOOGLE_LOGIN_CLIENT_SECRET} | ||
- STRIPE_PUBLISHABLE_KEY=${STRIPE_PUBLISHABLE_KEY} | ||
- STRIPE_SECRET_KEY=${STRIPE_SECRET_KEY} | ||
- STRIPE_CONNECT_CLIENT_ID=${STRIPE_CONNECT_CLIENT_ID} | ||
- STRIPE_WEBHOOK_SECRET_KEY=${STRIPE_WEBHOOK_SECRET_KEY} | ||
- BULL_JOB_ATTEMPTS=${BULL_JOB_ATTEMPTS} | ||
- BULL_JOB_TIMEOUT=${BULL_JOB_TIMEOUT} | ||
- BULL_JOB_BACKOFF_DELAY=${BULL_JOB_BACKOFF_DELAY} | ||
- BULL_JOB_BACKOFF_TYPE=${BULL_JOB_BACKOFF_TYPE} | ||
- INVITE_CODE_EXPIRE_DAYS=${INVITE_CODE_EXPIRE_DAYS} | ||
- FORM_REPORT_RATE=${FORM_REPORT_RATE} | ||
- VERIFICATION_CODE_EXPIRE=${VERIFICATION_CODE_EXPIRE} | ||
- VERIFICATION_CODE_LIMIT=${VERIFICATION_CODE_LIMIT} | ||
- ACCOUNT_DELETION_SCHEDULE_INTERVAL=${ACCOUNT_DELETION_SCHEDULE_INTERVAL} | ||
- UNSPLASH_CLIENT_ID=${UNSPLASH_CLIENT_ID} | ||
- OPENAI_BASE_URL=${OPENAI_BASE_URL} | ||
- OPENAI_API_KEY=${OPENAI_API_KEY} | ||
- OPENAI_GPT_MODEL=${OPENAI_GPT_MODEL} | ||
|
||
healthcheck: | ||
test: ["CMD-SHELL", "wget -qO- http://127.0.0.1:8000 || exit 1"] | ||
interval: 5s | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The indention is incorrect, please fix it