Some checks failed
Publish Chatwoot CE docker images / merge (push) Has been cancelled
Publish Chatwoot CE docker images / build (linux/amd64, ubuntu-latest) (push) Has been cancelled
Publish Chatwoot CE docker images / build (linux/arm64, ubuntu-22.04-arm) (push) Has been cancelled
Run Chatwoot CE spec / lint-backend (push) Has been cancelled
Run Chatwoot CE spec / security-scan (push) Has been cancelled
Run Chatwoot CE spec / lint-frontend (push) Has been cancelled
Run Chatwoot CE spec / frontend-tests (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (0, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (1, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (10, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (11, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (12, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (13, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (14, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (15, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (2, 16) (push) Has been cancelled
Frontend Lint & Test / test (push) Has been cancelled
Publish Chatwoot EE docker images / build (linux/amd64, ubuntu-latest) (push) Has been cancelled
Publish Chatwoot EE docker images / build (linux/arm64, ubuntu-22.04-arm) (push) Has been cancelled
Publish Chatwoot EE docker images / merge (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (3, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (4, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (5, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (6, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (7, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (8, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (9, 16) (push) Has been cancelled
Replace remaining user-facing "Chatwoot" branding with Moreminimore Chat across visible surfaces (internal Ruby/JS identifiers, ChatwootHub/App and the X-Chatwoot-* webhook signature headers are intentionally unchanged): - app.json: name/description/website/repository/logo + env descriptions. - Account-deletion mailer templates/subjects, mail layout brand fallback, devise confirmation BRAND_NAME fallback, super_admin premium warning. - OpenAI assistant prompt system-role text. - 56 locale .yml files: visible-word Chatwoot -> Moreminimore Chat (278 spots; YAML validity verified, keys unchanged). Emails/support rebranded to @moreminimore.com (contact@, sales@); no stale chatwoot.com references added. Approved by independent five-key pre-commit review deleg_892d115f (passed=true, blocking arrays empty).
87 lines
2.1 KiB
JSON
87 lines
2.1 KiB
JSON
{
|
|
"name": "Moreminimore Chat",
|
|
"description": "Moreminimore Chat is a customer support tool for instant messaging channels",
|
|
"website": "https://www.moreminimore.com/",
|
|
"repository": "https://git.moreminimore.com/kunthawat/moreminimore-chat",
|
|
"logo": "/brand-assets/logo_thumbnail.png",
|
|
"keywords": [
|
|
"live chat",
|
|
"customer support",
|
|
"ruby",
|
|
"rails",
|
|
"vue"
|
|
],
|
|
"success_url": "/",
|
|
"env": {
|
|
"SECRET_TOKEN": {
|
|
"description": "A secret key for verifying the integrity of signed cookies.",
|
|
"generator": "secret"
|
|
},
|
|
"RACK_ENV": {
|
|
"description": "Environment for rack middleware.",
|
|
"value": "production"
|
|
},
|
|
"RAILS_ENV": {
|
|
"description": "Environment for rails middleware.",
|
|
"value": "production"
|
|
},
|
|
"FRONTEND_URL": {
|
|
"description": "Public root URL of the Moreminimore Chat installation. This will be used in the emails.",
|
|
"value": "https://CHANGE.herokuapp.com"
|
|
},
|
|
"INSTALLATION_ENV": {
|
|
"description": "Installation method used for Moreminimore Chat.",
|
|
"value": "heroku"
|
|
},
|
|
"REDIS_OPENSSL_VERIFY_MODE":{
|
|
"description": "OpenSSL verification mode for Redis connections. ref https://help.heroku.com/HC0F8CUS/redis-connection-issues",
|
|
"value": "none"
|
|
},
|
|
"NODE_OPTIONS": {
|
|
"description": "Increase V8 heap for Vite build to avoid OOM",
|
|
"value": "--max-old-space-size=4096"
|
|
}
|
|
},
|
|
"formation": {
|
|
"web": {
|
|
"quantity": 1,
|
|
"size": "basic"
|
|
},
|
|
"worker": {
|
|
"quantity": 1,
|
|
"size": "basic"
|
|
}
|
|
},
|
|
"stack": "heroku-24",
|
|
"image": "heroku/ruby",
|
|
"addons": [
|
|
{
|
|
"plan": "heroku-redis:mini"
|
|
},
|
|
{
|
|
"plan": "heroku-postgresql:essential-0"
|
|
}
|
|
],
|
|
"stack": "heroku-24",
|
|
"buildpacks": [
|
|
{
|
|
"url": "heroku/nodejs"
|
|
},
|
|
{
|
|
"url": "heroku/ruby"
|
|
}
|
|
],
|
|
"environments": {
|
|
"test": {
|
|
"scripts": {
|
|
"test": "bundle exec rake test"
|
|
}
|
|
},
|
|
"review": {
|
|
"scripts": {
|
|
"postdeploy": "bundle exec rails db:seed"
|
|
}
|
|
}
|
|
}
|
|
}
|