1
+ # DEPRECATED - Feb 1, 2024 - see https://topcoder.atlassian.net/browse/CORE-203
2
+
1
3
# UBahn - Backend Job
2
4
3
5
Queries U-bahn's database for users and posts them to kafka to be picked up by the u-bahn-skill processor
@@ -48,27 +50,27 @@ The following parameters can be set in config files or in env variables:
48
50
49
51
1 . From the project root directory, run the following command to install the dependencies
50
52
51
- ``` bash
52
- npm install
53
- ```
53
+ ``` bash
54
+ npm install
55
+ ```
54
56
55
57
2 . To run linters if required
56
58
57
- ` ` ` bash
58
- npm run lint
59
- ` ` `
59
+ ``` bash
60
+ npm run lint
61
+ ```
60
62
61
- To fix possible lint errors:
63
+ To fix possible lint errors:
62
64
63
- ` ` ` bash
64
- npm run lint:fix
65
- ` ` `
65
+ ``` bash
66
+ npm run lint:fix
67
+ ```
66
68
67
69
3 . Start the processor and health check dropin
68
70
69
- ` ` ` bash
70
- npm start
71
- ` ` `
71
+ ``` bash
72
+ npm start
73
+ ```
72
74
73
75
## Local Deployment with Docker
74
76
@@ -82,9 +84,9 @@ To run the Skill Processor Trigger using docker, follow the below steps
82
84
83
85
4 . Once that is done, run the following command
84
86
85
- ` ` ` bash
86
- docker-compose up
87
- ` ` `
87
+ ``` bash
88
+ docker-compose up
89
+ ```
88
90
89
91
5 . When you are running the application for the first time, It will take some time initially to download the image and install the dependencies
90
92
@@ -94,4 +96,4 @@ To run the Skill Processor Trigger using docker, follow the below steps
94
96
2 . run ` npm run insert-data ` to load test data to db
95
97
3 . run ` npm start ` to post event when there is not offset key in redis
96
98
4 . run ` npm start ` to post event when there is an offset key in redis
97
- 6 . watch the app console, it will show the offset and post message
99
+ 5 . watch the app console, it will show the offset and post message
0 commit comments