Skip to content

Commit 23f1486

Browse files
committed
Merge branch 'dev'
2 parents 2710ef3 + 48fc3aa commit 23f1486

17 files changed

+2981
-1897
lines changed

README.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,8 @@ The following configuration parameters are available:
3939
| SPIGIT_API_URL | SPIGIT api base url |
4040
|SPIGIT_API_VERSION_PATH | SPIGIT api version path |
4141
|GROUP_V5_API_URL | URL of the v5 Groups API |
42+
|LOOKUP_V5_API_URL | URL of the v5 Devices API |
43+
4244

4345
## Start the Application
4446

@@ -47,8 +49,8 @@ As application uses Topcoder authorization we have to run it on the one of allow
4749
Simply execute the following command to start the app in development mode (with browsersync)
4850
```
4951
npm install
50-
gulp build
51-
gulp serve
52+
npm run build
53+
npm run dev
5254
```
5355
Application will be hosted and running at http://local.topcoder-dev.com:3000.
5456

@@ -86,3 +88,6 @@ npm install
8688
### Execute E2E Tests
8789

8890
```gulp protractor```
91+
92+
93+
Update to Push CI

config.json

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@
1212
"OAUTH2_TOKEN_EXPIRETIME_TAGNAME": "oa2expire",
1313
"SPIGIT_API_URL": "spigit.com",
1414
"SPIGIT_API_VERSION_PATH": "/api/v1",
15-
"GROUP_V5_API_URL": "http://localhost:3000/v5"
15+
"GROUP_V5_API_URL": "http://localhost:3000/v5",
16+
"LOOKUP_V5_API_URL": "http://localhost:3000/v5"
1617
},
1718
"dev": {
1819
"API_URL": "https://api.topcoder-dev.com",
@@ -27,7 +28,8 @@
2728
"OAUTH2_TOKEN_EXPIRETIME_TAGNAME": "oa2expire",
2829
"SPIGIT_API_URL": "spigit.com",
2930
"SPIGIT_API_VERSION_PATH": "/api/v1",
30-
"GROUP_V5_API_URL": "https://api.topcoder-dev.com/v5"
31+
"GROUP_V5_API_URL": "https://api.topcoder-dev.com/v5",
32+
"LOOKUP_V5_API_URL": "https://api.topcoder-dev.com/v5"
3133
},
3234
"qa": {
3335
"API_URL": "https://api.topcoder-qa.com",
@@ -42,7 +44,8 @@
4244
"OAUTH2_TOKEN_EXPIRETIME_TAGNAME": "oa2expire",
4345
"SPIGIT_API_URL": "spigit.com",
4446
"SPIGIT_API_VERSION_PATH": "/api/v1",
45-
"GROUP_V5_API_URL": "http://localhost:9000"
47+
"GROUP_V5_API_URL": "http://localhost:9000",
48+
"LOOKUP_V5_API_URL": "http://localhost:3000/v5"
4649
},
4750
"prod": {
4851
"API_URL": "https://api.topcoder.com",
@@ -57,6 +60,7 @@
5760
"OAUTH2_TOKEN_EXPIRETIME_TAGNAME": "oa2expire",
5861
"SPIGIT_API_URL": "spigit.com",
5962
"SPIGIT_API_VERSION_PATH": "/api/v1",
60-
"GROUP_V5_API_URL": "https://api.topcoder.com/v5"
63+
"GROUP_V5_API_URL": "https://api.topcoder.com/v5",
64+
"LOOKUP_V5_API_URL": "https://api.topcoder.com/v5"
6165
}
6266
}

0 commit comments

Comments
 (0)