Skip to content

Add device management #132

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@ The following configuration parameters are available:
| SPIGIT_API_URL | SPIGIT api base url |
|SPIGIT_API_VERSION_PATH | SPIGIT api version path |
|GROUP_V5_API_URL | URL of the v5 Groups API |
|LOOKUP_V5_API_URL | URL of the v5 Devices API |


## Start the Application

Expand Down
12 changes: 8 additions & 4 deletions config.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@
"OAUTH2_TOKEN_EXPIRETIME_TAGNAME": "oa2expire",
"SPIGIT_API_URL": "spigit.com",
"SPIGIT_API_VERSION_PATH": "/api/v1",
"GROUP_V5_API_URL": "http://localhost:3000/v5"
"GROUP_V5_API_URL": "http://localhost:3000/v5",
"LOOKUP_V5_API_URL": "http://localhost:3000/v5"
},
"dev": {
"API_URL": "https://api.topcoder-dev.com",
Expand All @@ -27,7 +28,8 @@
"OAUTH2_TOKEN_EXPIRETIME_TAGNAME": "oa2expire",
"SPIGIT_API_URL": "spigit.com",
"SPIGIT_API_VERSION_PATH": "/api/v1",
"GROUP_V5_API_URL": "https://api.topcoder-dev.com/v5"
"GROUP_V5_API_URL": "https://api.topcoder-dev.com/v5",
"LOOKUP_V5_API_URL": "https://api.topcoder-dev.com/v5"
},
"qa": {
"API_URL": "https://api.topcoder-qa.com",
Expand All @@ -42,7 +44,8 @@
"OAUTH2_TOKEN_EXPIRETIME_TAGNAME": "oa2expire",
"SPIGIT_API_URL": "spigit.com",
"SPIGIT_API_VERSION_PATH": "/api/v1",
"GROUP_V5_API_URL": "http://localhost:9000"
"GROUP_V5_API_URL": "http://localhost:9000",
"LOOKUP_V5_API_URL": "http://localhost:3000/v5"
},
"prod": {
"API_URL": "https://api.topcoder.com",
Expand All @@ -57,6 +60,7 @@
"OAUTH2_TOKEN_EXPIRETIME_TAGNAME": "oa2expire",
"SPIGIT_API_URL": "spigit.com",
"SPIGIT_API_VERSION_PATH": "/api/v1",
"GROUP_V5_API_URL": "https://api.topcoder.com/v5"
"GROUP_V5_API_URL": "https://api.topcoder.com/v5",
"LOOKUP_V5_API_URL": "https://api.topcoder.com/v5"
}
}
Loading