-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Check for all required variables in requests. Refractored endpoints and functions
- Loading branch information
Showing
6 changed files
with
134 additions
and
103 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,11 @@ | ||
ACCESS_TOKEN="<github access token>" | ||
|
||
AWS_KEY_ID="<aws key>" | ||
|
||
JSON_AUTH_TOKEN="<server auth token" | ||
PROD_REPO_URI="<github production repository uri>" | ||
TEST_REPO_URI="<github test repository uri>" | ||
|
||
PROD_REPO_URI="DralrinResthal/ProdRepo" | ||
TEST_REPO_URI="Username/Repository" | ||
|
||
TEST_FILENAME="test.yml" | ||
PROD_FILENAME="prod.yml" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -71,24 +71,24 @@ POST http://127.0.0.1:8000/putParams | |
content-type: application/json | ||
|
||
{ | ||
"authToken": "FXbWZBmGstqCJP8D7P3kzguthu479dFv", | ||
"userInfo": { | ||
"userName": "Bob Pickles", | ||
"userEmail": "[email protected]" | ||
"authToken": "FXbWZBmGstqCJP8D7P3kzguthu479dFv", | ||
"userInfo": { | ||
"userName": "Bob Pickles", | ||
"userEmail": "[email protected]" | ||
}, | ||
"env": "test", | ||
"parameters": { | ||
"a": { | ||
"value": "some dumb value", | ||
"secret": true, | ||
"comment": "some dumb comment" | ||
}, | ||
"env": "prod", | ||
"parameters": { | ||
"a": { | ||
"value": "some dumb value", | ||
"secret": true, | ||
"comment": "some dumb comment" | ||
}, | ||
"b": { | ||
"value": "another dumb value", | ||
"secret": false, | ||
"comment": "another dumb comment" | ||
} | ||
"b": { | ||
"value": "another dumb value", | ||
"secret": false, | ||
"comment": "another dumb comment" | ||
} | ||
} | ||
} | ||
|
||
### | ||
|