Skip to content

Commit

Permalink
added highrisk_app
Browse files Browse the repository at this point in the history
  • Loading branch information
Delaram Golpayegani committed Jul 12, 2023
1 parent d3295c1 commit ca7197b
Show file tree
Hide file tree
Showing 17 changed files with 11,552 additions and 0 deletions.
1 change: 1 addition & 0 deletions Procfile
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Web: gunicorn main:app
7 changes: 7 additions & 0 deletions app.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
from website import create_app

app = create_app()
app.secret_key = "LDNh56g77**hjh(u)"

if __name__ == '__main__':
app.run(debug=True, port=8000)
22 changes: 22 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
blinker==1.6.2
certifi==2022.12.7
click==8.1.3
Flask==2.3.2
gunicorn==20.1.0
html5lib==1.1
install==1.3.5
isodate==0.6.1
itsdangerous==2.1.2
Jinja2==3.1.2
MarkupSafe==2.1.2
owlrl==6.0.2
packaging==23.1
prettytable==2.5.0
pyparsing==3.0.9
pyshacl==0.23.0
rdflib==6.3.2
six==1.16.0
uriref==0.0.2
wcwidth==0.2.6
webencodings==0.5.1
Werkzeug==2.3.6
8 changes: 8 additions & 0 deletions turtle
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
@prefix airo: <https://w3id.org/airo#> .
@prefix vair: <https://w3id.org/vair#> .

<http://example.org/hfi> a airo:AISystem ;
airo:hasCapability vair:Profiling ;
airo:hasPurpose vair:BiometricIdentification ;
airo:isUsedWithinDomain vair:Education .

Empty file added validation.py
Empty file.
16 changes: 16 additions & 0 deletions website/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
from flask import Flask



def create_app():
app = Flask (__name__)
#sapp.config['SERECT_Key'] = 'ahhh bb&&**R'



from .views import views


app.register_blueprint(views, url_prefix='/')

return app
Binary file added website/__pycache__/__init__.cpython-311.pyc
Binary file not shown.
Binary file added website/__pycache__/highrisk.cpython-311.pyc
Binary file not shown.
Binary file added website/__pycache__/views.cpython-311.pyc
Binary file not shown.
Binary file added website/static/airo-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit ca7197b

Please sign in to comment.