-
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.
- Loading branch information
0 parents
commit 4851089
Showing
15 changed files
with
8,370 additions
and
0 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,25 @@ | ||
.DS_Store | ||
.idea/ | ||
.python-version | ||
.coverage* | ||
.dockerignore | ||
.flake8 | ||
.github/ | ||
.venv/ | ||
LICENSE | ||
README.md | ||
docker-compose* | ||
__pycache__ | ||
analysis/ | ||
app/ | ||
build/ | ||
docker/ | ||
scripts/ | ||
mlruns/ | ||
git-config/ | ||
mypy.ini | ||
pyproject.toml | ||
pytest.ini | ||
setup.cfg | ||
cms-users.db | ||
tests/ |
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,31 @@ | ||
|
||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<link type="text/css" rel="stylesheet" href="https://cdn.jsdelivr.net/npm/swagger-ui-dist@5/swagger-ui.css"> | ||
<link rel="shortcut icon" href="static/images/favicon.ico"> | ||
<title>AnonCAT Model API Doc</title> | ||
</head> | ||
<body> | ||
<div id="swagger-ui"> | ||
</div> | ||
<script src="https://cdn.jsdelivr.net/npm/swagger-ui-dist@5/swagger-ui-bundle.js"></script> | ||
<!-- `SwaggerUIBundle` is now available on the page --> | ||
<script> | ||
const ui = SwaggerUIBundle({ | ||
"url": "./anoncat_model_apis.json", | ||
"dom_id": "#swagger-ui", | ||
"layout": "BaseLayout", | ||
"deepLinking": true, | ||
"showExtensions": true, | ||
"showCommonExtensions": true, | ||
"oauth2RedirectUrl": window.location.origin + '/docs/oauth2-redirect', | ||
"presets": [ | ||
SwaggerUIBundle.presets.apis, | ||
SwaggerUIBundle.SwaggerUIStandalonePreset | ||
], | ||
supportedSubmitMethods: [] | ||
}) | ||
</script> | ||
</body> | ||
</html> |
Oops, something went wrong.