Skip to content

Commit 5cc1037

Browse files
committed
2 parents b4b108f + b372225 commit 5cc1037

File tree

4 files changed

+1286
-879
lines changed

4 files changed

+1286
-879
lines changed

.idea/codeStyles/Project.xml

Lines changed: 0 additions & 24 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,4 +43,12 @@ We need a PostgreSQL database to run. Please configure the following env variabl
4343
DB_PASS='judgeapi',
4444
DB_HOST='localhost'
4545
```
46-
### Queue (RabbitMQ)
46+
### Queue (RabbitMQ)
47+
48+
```
49+
brew install rabbitmq
50+
brew services start rabbitmq
51+
rabbitmqctl add_user codingblocks codingblocks
52+
rabbitmqctl set_user_tags codingblocks administrator
53+
rabbitmqctl set_permissions -p / codingblocks conf write read
54+
```

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "judge-api",
3-
"version": "1.1.0",
3+
"version": "1.2.0",
44
"description": "Judge API",
55
"main": "dist/server.js",
66
"repository": "https://github.com/coding-blocks/judge-api",
@@ -11,15 +11,15 @@
1111
"@types/amqplib": "^0.5.4",
1212
"amqplib": "^0.5.2",
1313
"apidoc": "^0.17.6",
14-
"axios": "^0.18.0",
14+
"axios": "^0.19.2",
1515
"base-64": "^0.1.0",
1616
"debug": "^4.0.0",
1717
"express": "^4.16.2",
1818
"minio": "^7.0.3",
1919
"pg": "^7.4.3",
2020
"pg-hstore": "^2.3.2",
2121
"sequelize": "^4.22.6",
22-
"uuid": "^3.3.2"
22+
"uuid": "^7.0.1"
2323
},
2424
"devDependencies": {
2525
"@types/chai": "^4.0.4",
@@ -35,8 +35,8 @@
3535
"nyc": "^12.0.1",
3636
"request": "^2.83.0",
3737
"rimraf": "^2.6.2",
38-
"ts-node": "^7.0.0",
39-
"typescript": "^2.6.1"
38+
"ts-node": "^8.6.2",
39+
"typescript": "^3.8.3"
4040
},
4141
"scripts": {
4242
"prebuild": "mkdirp dist && rimraf dist/*",

0 commit comments

Comments
 (0)