-
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.
added in Getting Started section to readme
- Loading branch information
Showing
6 changed files
with
70 additions
and
3 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 |
---|---|---|
|
@@ -139,4 +139,5 @@ logs/ | |
creds | ||
src/tools/googleTokenGen.py | ||
abSENT/ | ||
secrets.ini | ||
secrets.ini | ||
testing_config.ini |
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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
; Template for config.ini | ||
|
||
[NNHS] | ||
key = ; API key for schoology | ||
secret = ; API secret for schoology | ||
|
||
[NSHS] | ||
key = ; API key for schoology | ||
secret = ; API secret for schoology | ||
|
||
[PostgreSQL] | ||
name = ; database name | ||
user = ; database user | ||
password = ; database password | ||
|
||
[Firebase] | ||
pkey = ; path to firebase service account json file | ||
|
||
[JWT] | ||
pkey = ; path to private key for signing | ||
pubkey = ; path to public key for verification |
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
; Secrets file for testing | ||
[Google] | ||
client_id = ; Google app client id | ||
client_secret = ; Google app client secret | ||
|
||
[Login] | ||
id_token = ; DO NOT FILL IN; will be auto generated by googleTokenGen.py | ||
token = ; DO NOT FILL IN; will be auto generated by googleTokenGen.py | ||
refresh_token = ; DO NOT FILL IN; will be auto generated by googleTokenGen.py | ||
|