Skip to content
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

✨ Add Chatwoot #137

Merged
merged 3 commits into from
May 19, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
🚨 Fix lint
  • Loading branch information
anarion80 committed May 19, 2024
commit d5a26cc9c51e8a4642199f7a2ac77c068f660752
12 changes: 6 additions & 6 deletions roles/chatwoot/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@
# could user either `email@yourdomain.com` or `BrandName <email@yourdomain.com>`
chatwoot_mailer_sender_email: "Chatwoot <chatwoot@{{ ansible_nas_domain }}>"

#SMTP domain key is set up for HELO checking
# SMTP domain key is set up for HELO checking
chatwoot_smtp_domain: "chatwoot.com"
# Set the value to "mailhog" if using docker-compose for development environments,
# Set the value as "localhost" or your SMTP address in other environments
Expand Down Expand Up @@ -160,9 +160,9 @@
# Disable if you want to write logs to a file
chatwoot_rails_log_to_stdout: "true"
chatwoot_log_level: "info"
chatwoot_log_size : "500"

Check failure on line 163 in roles/chatwoot/defaults/main.yml

View workflow job for this annotation

GitHub Actions / Lint

yaml[colons]

Too many spaces before colon
# Configure this environment variable if you want to use lograge instead of rails logger
#chatwoot_lograge_enabled: "true"

Check failure on line 165 in roles/chatwoot/defaults/main.yml

View workflow job for this annotation

GitHub Actions / Lint

yaml[comments]

Missing starting space in comment

### This environment variables are only required if you are setting up social media channels

Expand All @@ -182,7 +182,7 @@
chatwoot_twitter_consumer_secret: ""
chatwoot_twitter_environment: ""

#slack integration
# slack integration
chatwoot_slack_client_id: ""
chatwoot_slack_client_secret: ""

Expand Down Expand Up @@ -276,7 +276,7 @@
# Make sure to follow https://edgeguides.rubyonrails.org/active_storage_overview.html#cross-origin-resource-sharing-cors-configuration on the cloud storage after setting this to true.
chatwoot_direct_uploads_enabled: ""

#MS OAUTH creds
# MS OAUTH creds
chatwoot_azure_app_id: ""
chatwoot_azure_app_secret: ""

Expand Down Expand Up @@ -363,7 +363,7 @@
# could user either `email@yourdomain.com` or `BrandName <email@yourdomain.com>`
MAILER_SENDER_EMAIL: "{{ chatwoot_mailer_sender_email }}"

#SMTP domain key is set up for HELO checking
# SMTP domain key is set up for HELO checking
SMTP_DOMAIN: "{{ chatwoot_smtp_domain }}"
# Set the value to "mailhog" if using docker-compose for development environments,
# Set the value as "localhost" or your SMTP address in other environments
Expand Down Expand Up @@ -444,7 +444,7 @@
TWITTER_CONSUMER_SECRET: "{{ chatwoot_twitter_consumer_secret }}"
TWITTER_ENVIRONMENT: "{{ chatwoot_twitter_environment }}"

#slack integration
# slack integration
SLACK_CLIENT_ID: "{{ chatwoot_slack_client_id }}"
SLACK_CLIENT_SECRET: "{{ chatwoot_slack_client_secret }}"

Expand Down Expand Up @@ -538,7 +538,7 @@
# Make sure to follow https://edgeguides.rubyonrails.org/active_storage_overview.html#cross-origin-resource-sharing-cors-configuration on the cloud storage after setting this to true.
DIRECT_UPLOADS_ENABLED: "{{ chatwoot_direct_uploads_enabled }}"

#MS OAUTH creds
# MS OAUTH creds
AZURE_APP_ID: "{{ chatwoot_azure_app_id }}"
AZURE_APP_SECRET: "{{ chatwoot_azure_app_secret }}"

Expand Down
Loading