-
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.
- Loading branch information
1 parent
9933be5
commit 6623404
Showing
3 changed files
with
20 additions
and
6 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 |
---|---|---|
|
@@ -162,4 +162,5 @@ cython_debug/ | |
|
||
# data | ||
store/ | ||
*cookies.txt | ||
*cookies.txt | ||
auth.yaml |
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,17 @@ | ||
credentials: | ||
usernames: | ||
jsmith: | ||
email: [email protected] | ||
name: John Smith | ||
password: # Placeholder for hashed password of 'abc' | ||
rbriggs: | ||
email: [email protected] | ||
name: Rebecca Briggs | ||
password: # Placeholder for hashed password of 'def' | ||
cookie: | ||
expiry_days: 30 | ||
key: some_signature_key # Must be string | ||
name: some_cookie_name | ||
preauthorized: | ||
emails: | ||
- [email protected] |
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