Building webapp wrapper

This commit is contained in:
Fabio Manganiello 2021-01-24 00:55:49 +01:00
parent a5e52e4e18
commit ee15511c47
6 changed files with 12 additions and 3 deletions

View File

@ -1,3 +0,0 @@
# Blog articles
- [Introduction to Platypush](pages/Self-hosted-ultimate-automation-with-Platypush.md)

1
README.md Symbolic link
View File

@ -0,0 +1 @@
static/pages/Home.md

8
app/__init__.py Normal file
View 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
View File

View File

Before

Width:  |  Height:  |  Size: 52 KiB

After

Width:  |  Height:  |  Size: 52 KiB

3
static/pages/Home.md Normal file
View File

@ -0,0 +1,3 @@
# Blog articles
- [Introduction to Platypush](Self-hosted-ultimate-automation-with-Platypush.md)