Building webapp wrapper
This commit is contained in:
parent
a5e52e4e18
commit
ee15511c47
6 changed files with 12 additions and 3 deletions
|
@ -1,3 +0,0 @@
|
|||
# Blog articles
|
||||
|
||||
- [Introduction to Platypush](pages/Self-hosted-ultimate-automation-with-Platypush.md)
|
1
README.md
Symbolic link
1
README.md
Symbolic link
|
@ -0,0 +1 @@
|
|||
static/pages/Home.md
|
8
app/__init__.py
Normal file
8
app/__init__.py
Normal file
|
@ -0,0 +1,8 @@
|
|||
from flask import Flask
|
||||
|
||||
app = Flask(__name__)
|
||||
|
||||
|
||||
@app.route('/')
|
||||
def test():
|
||||
return 'It works!'
|
0
app/__main__.py
Normal file
0
app/__main__.py
Normal file
Before Width: | Height: | Size: 52 KiB After Width: | Height: | Size: 52 KiB |
3
static/pages/Home.md
Normal file
3
static/pages/Home.md
Normal file
|
@ -0,0 +1,3 @@
|
|||
# Blog articles
|
||||
|
||||
- [Introduction to Platypush](Self-hosted-ultimate-automation-with-Platypush.md)
|
Loading…
Reference in a new issue