added project stubs

This commit is contained in:
Senad Uka
2015-12-18 10:59:24 +01:00
parent 86737d1bbb
commit 5b8282935f
6 changed files with 26 additions and 0 deletions

11
api/app.py Normal file
View File

@@ -0,0 +1,11 @@
#!flask/bin/python
from flask import Flask
app = Flask(__name__)
@app.route('/')
def index():
return "Hello, TFM!"
if __name__ == '__main__':
app.run(debug=True)

1
api/requirements.txt Normal file
View File

@@ -0,0 +1 @@
Flask==0.10.1

11
configurator/app.py Normal file
View File

@@ -0,0 +1,11 @@
#!flask/bin/python
from flask import Flask
app = Flask(__name__)
@app.route('/')
def index():
return "Hello, TFM!"
if __name__ == '__main__':
app.run(debug=True)

View File

@@ -0,0 +1 @@
Flask==0.10.1

1
controller/controller.py Normal file
View File

@@ -0,0 +1 @@
print("Hello TFM!")

1
ui/web/index.html Normal file
View File

@@ -0,0 +1 @@
Hello TFM!