diff --git a/README.md b/README.md deleted file mode 100644 index f2af85f..0000000 --- a/README.md +++ /dev/null @@ -1,3 +0,0 @@ -# Blog articles - -- [Introduction to Platypush](pages/Self-hosted-ultimate-automation-with-Platypush.md) diff --git a/README.md b/README.md new file mode 120000 index 0000000..0197498 --- /dev/null +++ b/README.md @@ -0,0 +1 @@ +static/pages/Home.md \ No newline at end of file diff --git a/app/__init__.py b/app/__init__.py new file mode 100644 index 0000000..95fa1d1 --- /dev/null +++ b/app/__init__.py @@ -0,0 +1,8 @@ +from flask import Flask + +app = Flask(__name__) + + +@app.route('/') +def test(): + return 'It works!' diff --git a/app/__main__.py b/app/__main__.py new file mode 100644 index 0000000..e69de29 diff --git a/img/light-hue-ui-1.png b/static/img/light-hue-ui-1.png similarity index 100% rename from img/light-hue-ui-1.png rename to static/img/light-hue-ui-1.png diff --git a/static/pages/Home.md b/static/pages/Home.md new file mode 100644 index 0000000..95eded1 --- /dev/null +++ b/static/pages/Home.md @@ -0,0 +1,3 @@ +# Blog articles + +- [Introduction to Platypush](Self-hosted-ultimate-automation-with-Platypush.md) diff --git a/pages/Self-hosted-ultimate-automation-with-Platypush.md b/static/pages/Self-hosted-ultimate-automation-with-Platypush.md similarity index 100% rename from pages/Self-hosted-ultimate-automation-with-Platypush.md rename to static/pages/Self-hosted-ultimate-automation-with-Platypush.md