summaryrefslogtreecommitdiff
path: root/app.py
diff options
context:
space:
mode:
authorLinnnus <[email protected]>2024-03-20 14:53:29 +0100
committerLinnnus <[email protected]>2024-03-20 14:53:29 +0100
commitc6ad9af921c23217eec6bef568b09ce9e2a4b194 (patch)
treece2dd3b86beddac48900d51240659932205059ed /app.py
Initial commit
Diffstat (limited to 'app.py')
-rw-r--r--app.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/app.py b/app.py
new file mode 100644
index 0000000..20932a8
--- /dev/null
+++ b/app.py
@@ -0,0 +1,9 @@
+from bottle import Bottle, run
+
+app = Bottle()
+
+def hello():
+ return "Hello World!"
+
+run(app, host='localhost', port=8080)