-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
only add Authorization header if token exists (#6)
* only add Authorization header if token exists This patch makes the database config "token" optional. Users can either set it to an empty string or omit the token completely. This is useful for DB-APIs that do not require authentication, and therefore no token. * pin dependency werkzeug to version 2.1.2 to workaround python-restx/flask-restx#460 * add git ignore file build output and caches can be ignored by git * downgrade werkzeug even further to 2.0.* as suggested in python-restx/flask-restx#460 (comment)
- Loading branch information
1 parent
e08a9cb
commit c5a6a2b
Showing
3 changed files
with
7 additions
and
2 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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
build/ | ||
**/*.egg-info/ | ||
**/__pycache__/ |
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