Skip to content

Commit

Permalink
#9 Started implementing the server side
Browse files Browse the repository at this point in the history
  • Loading branch information
kcuric committed Dec 28, 2019
1 parent 71333b3 commit 637fb06
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"python.pythonPath": "/home/bukinov/.local/share/virtualenvs/surveillance-system-w0mS087b/bin/python"
}
10 changes: 10 additions & 0 deletions server/app.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
from flask import Flask

app = Flask(__name__)

@app.route('/')
def index():
return 'DIY System'

if if __name__ == '__main__':
app.run(ssl_context='adhoc')

0 comments on commit 637fb06

Please sign in to comment.