Skip to content

Commit c79ba9c

Browse files
author
Sunil
committedNov 17, 2022
clean-up for development activity to start
1 parent 0dbf83e commit c79ba9c

Some content is hidden

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

49 files changed

+16024
-564525
lines changed
 

‎.env.example

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
STACK_NAME=local
2+
REGION=ap-southeast-2
3+
SUBDOMAIN=statistics
4+
ENV=local
5+
6+
REDIS_HOST=127.0.0.1
7+
REDIS_DB=0
8+
CACHE_EXPIRE_TIME=
9+
10+
DB_HOST=127.0.0.1
11+
DB_DATABASE=practera_main
12+
DB_USER=intersective
13+
DB_PASSWORD=
14+
15+
DB_LOG_HOST=127.0.0.1
16+
DB_LOG_DATABASE=practera_log
17+
DB_LOG_USER=intersective
18+
DB_LOG_PASSWORD=
19+
20+
TRIGGER_TYPE=experience
21+
TRIGGER_ID=3
22+
CRON_ENABLED=true
23+
24+

‎.eslintrc

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"root": true,
3+
"parser": "@typescript-eslint/parser",
4+
"plugins": [
5+
"@typescript-eslint"
6+
],
7+
"extends": [
8+
"eslint:recommended",
9+
"plugin:@typescript-eslint/eslint-recommended",
10+
"plugin:@typescript-eslint/recommended"
11+
],
12+
"rules": {
13+
"@typescript-eslint/no-explicit-any": ["off"],
14+
"@typescript-eslint/explicit-module-boundary-types": ["off"],
15+
"@typescript-eslint/no-var-requires": ["off"],
16+
"indent": "off",
17+
"@typescript-eslint/indent": ["error", 2, { "SwitchCase": 1 }]
18+
},
19+
"ignorePatterns": ["node_modules/**/*", "**/__mocks__/**/*", "*.spec.ts"]
20+
}

0 commit comments

Comments
 (0)