summary refs log tree commit diff stats
diff options
context:
space:
mode:
authormounderfod <mounderfod@gmail.com>2023-07-19 16:07:50 +0200
committermounderfod <mounderfod@gmail.com>2023-07-19 16:07:50 +0200
commit3c02dbcca9caa17373c47e0fa1ce9cf4715a7c84 (patch)
tree6fd6d8a2c4d618bcb6e3944b236ca5d2107fd263
parentba8852883789f1c47621b2039061bebb65357519 (diff)
downloadgopherhole-3c02dbcca9caa17373c47e0fa1ce9cf4715a7c84.tar.gz
Add .gitignore
-rw-r--r--.gitignore3
-rw-r--r--app.py2
-rw-r--r--requirements.txtbin68 -> 140 bytes
3 files changed, 3 insertions, 2 deletions
diff --git a/.gitignore b/.gitignore
index c83b525..59eb4a7 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,4 +1,5 @@
 .env
 venv/
 __pycache__/
-.idea/
\ No newline at end of file
+.idea/
+.space
\ No newline at end of file
diff --git a/app.py b/app.py
index 702045c..873c99b 100644
--- a/app.py
+++ b/app.py
@@ -44,4 +44,4 @@ def handle(request):
         return [Item(itype="3", text="Page not found")]
 
 
-serve(os.getenv("HOSTNAME"), port=70, handler=handle)
+serve(port=70, handler=handle)
diff --git a/requirements.txt b/requirements.txt
index 3f7a82b..c713bce 100644
--- a/requirements.txt
+++ b/requirements.txt
Binary files differ