-
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.
Showing
34 changed files
with
3,085 additions
and
1,185 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,2 +1,4 @@ | ||
# Project exclude paths | ||
/frontend/node_modules/ | ||
/frontend/node_modules/ | ||
.idea | ||
venv |
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,18 +1,20 @@ | ||
from flask import Blueprint | ||
from flask_restplus import Api | ||
|
||
from .epitope import api as epitope_api | ||
from .ufl import api as ufl | ||
from .analyze_file import api as analyze_file | ||
|
||
enable_doc = True | ||
|
||
api_blueprint = Blueprint('api', __name__) | ||
|
||
if enable_doc: | ||
api = Api(title='ViruSurf API', version='1.0', description='TODO', ) | ||
api = Api(title='UFL API', version='1.0', description='TODO', ) | ||
else: | ||
api = Api(title='ViruSurf API', version='1.0', description='TODO', doc=False) | ||
api = Api(title='UFL API', version='1.0', description='TODO', doc=False) | ||
|
||
|
||
api.init_app(api_blueprint, add_specs=enable_doc) | ||
|
||
api.add_namespace(epitope_api) | ||
api.add_namespace(ufl) | ||
api.add_namespace(analyze_file) |
Large diffs are not rendered by default.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.