added project stubs
This commit is contained in:
11
api/app.py
Normal file
11
api/app.py
Normal 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
1
api/requirements.txt
Normal file
@@ -0,0 +1 @@
|
||||
Flask==0.10.1
|
||||
11
configurator/app.py
Normal file
11
configurator/app.py
Normal 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
configurator/requirements.txt
Normal file
1
configurator/requirements.txt
Normal file
@@ -0,0 +1 @@
|
||||
Flask==0.10.1
|
||||
1
controller/controller.py
Normal file
1
controller/controller.py
Normal file
@@ -0,0 +1 @@
|
||||
print("Hello TFM!")
|
||||
1
ui/web/index.html
Normal file
1
ui/web/index.html
Normal file
@@ -0,0 +1 @@
|
||||
Hello TFM!
|
||||
Reference in New Issue
Block a user