From b1d67c2afb30a70fed73d502f1f233329ad8bd61 Mon Sep 17 00:00:00 2001 From: John Cleaver Date: Wed, 16 Mar 2016 17:55:06 -0400 Subject: [PATCH] Removed python files and reorganized html/css. --- .../templates/index.html => index.html | 0 .../static/css/main.css => main.css | 0 runserver.py | 10 ---------- stardew_community_checklist/__init__.py | 15 --------------- 4 files changed, 25 deletions(-) rename stardew_community_checklist/templates/index.html => index.html (100%) rename stardew_community_checklist/static/css/main.css => main.css (100%) delete mode 100644 runserver.py delete mode 100644 stardew_community_checklist/__init__.py diff --git a/stardew_community_checklist/templates/index.html b/index.html similarity index 100% rename from stardew_community_checklist/templates/index.html rename to index.html diff --git a/stardew_community_checklist/static/css/main.css b/main.css similarity index 100% rename from stardew_community_checklist/static/css/main.css rename to main.css diff --git a/runserver.py b/runserver.py deleted file mode 100644 index 7df7d9a..0000000 --- a/runserver.py +++ /dev/null @@ -1,10 +0,0 @@ -""" - -Author: John Cleaver -Copyright: 2016 John Cleaver -License: See LICENSE file -""" - -from stardew_community_checklist import app - -app.run(debug=True) diff --git a/stardew_community_checklist/__init__.py b/stardew_community_checklist/__init__.py deleted file mode 100644 index cc669ec..0000000 --- a/stardew_community_checklist/__init__.py +++ /dev/null @@ -1,15 +0,0 @@ -""" - -Author: John Cleaver -Copyright: 2016 John Cleaver -License: See LICENSE file -""" - -from flask import Flask, render_template - -app = Flask(__name__) - - -@app.route("/") -def index(): - return render_template('index.html')