aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--app.py6
-rwxr-xr-xstatic/images/minecraft.pngbin0 -> 27516 bytes
-rwxr-xr-xstatic/robots.txt2
3 files changed, 7 insertions, 1 deletions
diff --git a/app.py b/app.py
index c77d55f..edc69b3 100644
--- a/app.py
+++ b/app.py
@@ -62,6 +62,10 @@ def index():
commits = db.get_cached_commits(since = datetime.datetime.now() - datetime.timedelta(days = 7))
)
+@app.route("/robots.txt")
+def robots():
+ return flask.send_from_directory("static", "robots.txt")
+
@app.route("/discord")
def discord():
with database.Database() as db:
@@ -196,4 +200,4 @@ if __name__ == "__main__":
else:
app.run(host = "0.0.0.0", port = 5001, debug = True)
except IndexError:
- app.run(host = "0.0.0.0", port = 5001, debug = True) \ No newline at end of file
+ app.run(host = "0.0.0.0", port = 5001, debug = True)
diff --git a/static/images/minecraft.png b/static/images/minecraft.png
new file mode 100755
index 0000000..19210d2
--- /dev/null
+++ b/static/images/minecraft.png
Binary files differ
diff --git a/static/robots.txt b/static/robots.txt
new file mode 100755
index 0000000..8093c87
--- /dev/null
+++ b/static/robots.txt
@@ -0,0 +1,2 @@
+User-agent: *
+Disallow: \ No newline at end of file