-
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.
Merge pull request #15 from SoleSearch-Demos/main
OpenAPI metadata changes
- Loading branch information
Showing
5 changed files
with
41 additions
and
26 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,5 +1,6 @@ | ||
*.env | ||
*.pyc | ||
*__pycache__/ | ||
env/ | ||
dist/ | ||
cert.pem | ||
|
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 was deleted.
Oops, something went wrong.
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,3 +1,5 @@ | ||
__version__ = "1.0.5" | ||
|
||
import os | ||
|
||
from dotenv import load_dotenv | ||
|
@@ -13,7 +15,6 @@ | |
|
||
from api.data.instance import DATABASE_NAME, client | ||
from api.routes import auth, sneakers | ||
import api.__about__.__version__ as api_version | ||
|
||
desc = """ | ||
# SoleSearch | ||
|
@@ -27,7 +28,7 @@ | |
redoc_url=None, | ||
title="SoleSearch", | ||
summary="The sneaker reseller's Bloomberg Terminal.", | ||
version=api_version, | ||
version=__version__, | ||
contact={ | ||
"name": "SoleSearch Developer Support", | ||
"email": "[email protected]" | ||
|