Skip to content

Commit e747541

Browse files
committed
update
1 parent e3be5d7 commit e747541

File tree

5,426 files changed

+541102
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

5,426 files changed

+541102
-0
lines changed

.all-contributorsrc

+79
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,79 @@
1+
{
2+
"files": [
3+
"docs/contributors.md"
4+
],
5+
"imageSize": 48,
6+
"commit": false,
7+
"contributors": [
8+
{
9+
"login": "nithindavid",
10+
"name": "Nithin David Thomas",
11+
"avatar_url": "https://avatars2.githubusercontent.com/u/1277421?v=4",
12+
"profile": "http://nithindavid.me",
13+
"contributions": [
14+
"bug",
15+
"blog",
16+
"code",
17+
"doc",
18+
"design",
19+
"maintenance",
20+
"review"
21+
]
22+
}
23+
{
24+
"login": "sojan-official",
25+
"name": "Sojan Jose",
26+
"avatar_url": "https://avatars1.githubusercontent.com/u/73185?v=4",
27+
"profile": "http://sojan.me",
28+
"contributions": [
29+
"bug",
30+
"blog",
31+
"code",
32+
"doc",
33+
"design",
34+
"maintenance",
35+
"review"
36+
]
37+
},
38+
{
39+
"login": "pranavrajs",
40+
"name": "Pranav Raj S",
41+
"avatar_url": "https://avatars3.githubusercontent.com/u/2246121?v=4",
42+
"profile": "https://github.com/pranavrajs",
43+
"contributions": [
44+
"bug",
45+
"blog",
46+
"code",
47+
"doc",
48+
"design",
49+
"maintenance",
50+
"review"
51+
]
52+
},
53+
{
54+
"login": "subintp",
55+
"name": "Subin T P",
56+
"avatar_url": "https://avatars1.githubusercontent.com/u/1742357?v=4",
57+
"profile": "http://www.linkedin.com/in/subintp",
58+
"contributions": [
59+
"bug",
60+
"code"
61+
]
62+
},
63+
{
64+
"login": "manojmj92",
65+
"name": "Manoj M J",
66+
"avatar_url": "https://avatars1.githubusercontent.com/u/4034241?v=4",
67+
"profile": "https://github.com/manojmj92",
68+
"contributions": [
69+
"bug",
70+
"code",
71+
]
72+
}
73+
],
74+
"contributorsPerLine": 7,
75+
"projectName": "chatwoot",
76+
"projectOwner": "chatwoot",
77+
"repoType": "github",
78+
"repoHost": "https://github.com"
79+
}

.browserslistrc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
defaults

.bundler-audit.yml

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
---
2+
ignore:
3+
- CVE-2021-41098 # https://github.com/chatwoot/chatwoot/issues/3097 (update once azure blob storage is updated)

.circleci/config.yml

+206
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,206 @@
1+
# Ruby CircleCI 2.0 configuration file
2+
#
3+
# Check https://circleci.com/docs/2.0/language-ruby/ for more details
4+
#
5+
version: 2
6+
defaults: &defaults
7+
working_directory: ~/build
8+
docker:
9+
# specify the version you desire here
10+
- image: cimg/ruby:3.2.2-browsers
11+
12+
# Specify service dependencies here if necessary
13+
# CircleCI maintains a library of pre-built images
14+
# documented at https://circleci.com/docs/2.0/circleci-images/
15+
- image: cimg/postgres:15.3
16+
- image: cimg/redis:6.2.6
17+
environment:
18+
- RAILS_LOG_TO_STDOUT: false
19+
- COVERAGE: true
20+
- LOG_LEVEL: warn
21+
parallelism: 4
22+
resource_class: large
23+
24+
jobs:
25+
build:
26+
<<: *defaults
27+
steps:
28+
- checkout
29+
30+
- run:
31+
name: Configure Bundler
32+
command: |
33+
echo 'export BUNDLER_VERSION=$(cat Gemfile.lock | tail -1 | tr -d " ")' >> $BASH_ENV
34+
source $BASH_ENV
35+
gem install bundler
36+
37+
- run:
38+
name: Which bundler?
39+
command: bundle -v
40+
41+
- run:
42+
name: Swap node versions
43+
command: |
44+
set +e
45+
wget -qO- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.1/install.sh | bash
46+
export NVM_DIR="$HOME/.nvm"
47+
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"
48+
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion"
49+
nvm install v20
50+
echo 'export NVM_DIR="$HOME/.nvm"' >> $BASH_ENV
51+
echo '[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"' >> $BASH_ENV
52+
53+
# Run bundler
54+
# Load installed gems from cache if possible, bundle install then save cache
55+
# Multiple caches are used to increase the chance of a cache hit
56+
57+
- restore_cache:
58+
keys:
59+
- chatwoot-bundle-{{ .Environment.CACHE_VERSION }}-v20220524-{{ checksum "Gemfile.lock" }}
60+
61+
- run: bundle install --frozen --path ~/.bundle
62+
- save_cache:
63+
paths:
64+
- ~/.bundle
65+
key: chatwoot-bundle-{{ .Environment.CACHE_VERSION }}-v20220524-{{ checksum "Gemfile.lock" }}
66+
67+
# Only necessary if app uses webpacker or yarn in some other way
68+
- restore_cache:
69+
keys:
70+
- chatwoot-yarn-{{ .Environment.CACHE_VERSION }}-{{ checksum "yarn.lock" }}
71+
- chatwoot-yarn-
72+
73+
- run:
74+
name: yarn
75+
command: yarn install --frozen-lockfile --cache-folder ~/.cache/yarn
76+
77+
# Store yarn / webpacker cache
78+
- save_cache:
79+
key: chatwoot-yarn-{{ .Environment.CACHE_VERSION }}-{{ checksum "yarn.lock" }}
80+
paths:
81+
- ~/.cache/yarn
82+
83+
- run:
84+
name: Download cc-test-reporter
85+
command: |
86+
mkdir -p ~/tmp
87+
curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ~/tmp/cc-test-reporter
88+
chmod +x ~/tmp/cc-test-reporter
89+
- persist_to_workspace:
90+
root: ~/tmp
91+
paths:
92+
- cc-test-reporter
93+
94+
# verify swagger specification
95+
- run:
96+
name: Verify swagger API specification
97+
command: |
98+
bundle exec rake swagger:build
99+
if [[ `git status swagger/swagger.json --porcelain` ]]
100+
then
101+
echo "ERROR: The swagger.json file is not in sync with the yaml specification. Run 'rake swagger:build' and commit 'swagger/swagger.json'."
102+
exit 1
103+
fi
104+
curl -L https://repo1.maven.org/maven2/org/openapitools/openapi-generator-cli/6.3.0/openapi-generator-cli-6.3.0.jar > ~/tmp/openapi-generator-cli-6.3.0.jar
105+
java -jar ~/tmp/openapi-generator-cli-6.3.0.jar validate -i swagger/swagger.json
106+
107+
# Database setup
108+
- run: bundle exec rake db:create
109+
- run: bundle exec rake db:schema:load
110+
111+
- run:
112+
name: Bundle audit
113+
command: bundle exec bundle audit update && bundle exec bundle audit check -v
114+
115+
- run:
116+
name: Rubocop
117+
command: bundle exec rubocop
118+
119+
# - run:
120+
# name: Brakeman
121+
# command: bundle exec brakeman
122+
123+
- run:
124+
name: eslint
125+
command: yarn run eslint
126+
127+
# Run frontend tests
128+
- run:
129+
name: Run frontend tests
130+
command: |
131+
mkdir -p ~/tmp/test-results/frontend_specs
132+
~/tmp/cc-test-reporter before-build
133+
TESTFILES=$(circleci tests glob **/specs/*.spec.js | circleci tests split --split-by=timings)
134+
yarn test:coverage --profile 10 \
135+
--out ~/tmp/test-results/yarn.xml \
136+
-- ${TESTFILES}
137+
- run:
138+
name: Code Climate Test Coverage
139+
command: |
140+
~/tmp/cc-test-reporter format-coverage -t lcov -o "coverage/codeclimate.frontend_$CIRCLE_NODE_INDEX.json"
141+
142+
# Run rails tests
143+
- run:
144+
name: Run backend tests
145+
command: |
146+
mkdir -p ~/tmp/test-results/rspec
147+
mkdir -p ~/tmp/test-artifacts
148+
mkdir -p coverage
149+
~/tmp/cc-test-reporter before-build
150+
TESTFILES=$(circleci tests glob "spec/**/*_spec.rb" | circleci tests split --split-by=timings)
151+
bundle exec rspec --format progress \
152+
--format RspecJunitFormatter \
153+
--out ~/tmp/test-results/rspec.xml \
154+
-- ${TESTFILES}
155+
no_output_timeout: 30m
156+
- run:
157+
name: Code Climate Test Coverage
158+
command: |
159+
~/tmp/cc-test-reporter format-coverage -t simplecov -o "coverage/codeclimate.$CIRCLE_NODE_INDEX.json"
160+
161+
- persist_to_workspace:
162+
root: coverage
163+
paths:
164+
- codeclimate.*.json
165+
# collect reports
166+
- store_test_results:
167+
path: ~/tmp/test-results
168+
- store_artifacts:
169+
path: ~/tmp/test-artifacts
170+
- store_artifacts:
171+
path: log
172+
173+
upload-coverage:
174+
working_directory: ~/build
175+
docker:
176+
# specify the version you desire here
177+
- image: circleci/ruby:3.0.2-node-browsers
178+
environment:
179+
- CC_TEST_REPORTER_ID: caf26a895e937974a90860cfadfded20891cfd1373a5aaafb3f67406ab9d433f
180+
steps:
181+
- attach_workspace:
182+
at: ~/build
183+
- run:
184+
name: Download cc-test-reporter
185+
command: |
186+
mkdir -p ~/tmp
187+
curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ~/tmp/cc-test-reporter
188+
chmod +x ~/tmp/cc-test-reporter
189+
- persist_to_workspace:
190+
root: ~/tmp
191+
paths:
192+
- cc-test-reporter
193+
- run:
194+
name: Upload coverage results to Code Climate
195+
command: |
196+
~/tmp/cc-test-reporter sum-coverage --output - codeclimate.*.json | ~/tmp/cc-test-reporter upload-coverage --debug --input -
197+
198+
workflows:
199+
version: 2
200+
201+
commit:
202+
jobs:
203+
- build
204+
- upload-coverage:
205+
requires:
206+
- build

.codeclimate.yml

+58
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
version: '2'
2+
plugins:
3+
rubocop:
4+
enabled: false
5+
channel: rubocop-0-73
6+
eslint:
7+
enabled: false
8+
csslint:
9+
enabled: true
10+
scss-lint:
11+
enabled: true
12+
brakeman:
13+
enabled: false
14+
checks:
15+
similar-code:
16+
enabled: false
17+
method-count:
18+
enabled: true
19+
config:
20+
threshold: 32
21+
file-lines:
22+
enabled: true
23+
config:
24+
threshold: 300
25+
method-lines:
26+
config:
27+
threshold: 50
28+
exclude_patterns:
29+
- 'spec/'
30+
- '**/specs/'
31+
- 'db/*'
32+
- 'bin/**/*'
33+
- 'db/**/*'
34+
- 'config/**/*'
35+
- 'public/**/*'
36+
- 'vendor/**/*'
37+
- 'node_modules/**/*'
38+
- 'lib/tasks/auto_annotate_models.rake'
39+
- 'app/test-matchers.js'
40+
- 'docs/*'
41+
- '**/*.md'
42+
- '**/*.yml'
43+
- 'app/javascript/dashboard/i18n/locale'
44+
- '**/*.stories.js'
45+
- 'stories/'
46+
- 'app/javascript/dashboard/components/widgets/conversation/advancedFilterItems/index.js'
47+
- 'app/javascript/shared/constants/countries.js'
48+
- 'app/javascript/dashboard/components/widgets/conversation/advancedFilterItems/languages.js'
49+
- 'app/javascript/dashboard/routes/dashboard/contacts/contactFilterItems/index.js'
50+
- 'app/javascript/dashboard/routes/dashboard/settings/automation/constants.js'
51+
- 'app/javascript/dashboard/components/widgets/FilterInput/FilterOperatorTypes.js'
52+
- 'app/javascript/dashboard/routes/dashboard/settings/reports/constants.js'
53+
- 'app/javascript/dashboard/i18n/index.js'
54+
- 'app/javascript/widget/i18n/index.js'
55+
- 'app/javascript/survey/i18n/index.js'
56+
- 'app/javascript/shared/constants/locales.js'
57+
- 'app/javascript/dashboard/helper/specs/macrosFixtures.js'
58+
- 'app/javascript/dashboard/routes/dashboard/settings/macros/constants.js'

.dependabot/config.yml

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
version: 1
2+
update_configs:
3+
- package_manager: "ruby:bundler"
4+
directory: "/"
5+
update_schedule: "weekly"
6+
default_reviewers:
7+
- "sony-mathew"
8+
- "sojan-official"
9+
- "subintp"
10+
default_labels:
11+
- "dependencies"
12+
- "ruby"
13+
version_requirement_updates: "auto"
14+
- package_manager: "javascript"
15+
directory: "/"
16+
update_schedule: "weekly"
17+
default_reviewers:
18+
- "pranavrajs"
19+
- "nithindavid"
20+
default_labels:
21+
- "dependencies"
22+
- "javascript"
23+
version_requirement_updates: "auto"

.devcontainer/Dockerfile

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# The below image is created out of the Dockerfile.base
2+
# It has the dependencies already installed so that codespace will boot up fast
3+
FROM ghcr.io/chatwoot/chatwoot_codespace:latest
4+
5+
# Do the set up required for chatwoot app
6+
WORKDIR /workspace
7+
COPY . /workspace
8+
RUN yarn && gem install bundler && bundle install

0 commit comments

Comments
 (0)