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')