Added Readme & Dockerfile

This commit is contained in:
Norm Rasmussen
2023-04-14 14:48:41 -04:00
parent eade9a5f27
commit cf96262fa9
18 changed files with 158 additions and 628 deletions

View File

@ -27,10 +27,10 @@ from werkzeug.utils import secure_filename
from app import app
UPLOAD_FOLDER = (
"/Users/normrasmussen/Documents/Projects/CSM_webapp/app/static/files/csv/"
"./app/static/files/csv/"
)
TEMPLATES_FOLDER = (
"/Users/normrasmussen/Documents/Projects/CSM_webapp/app/static/files/templates/"
"./app/static/files/templates/"
)
app.config["UPLOAD_FOLDER"] = UPLOAD_FOLDER
app.config["TEMPLATES_FOLDER"] = TEMPLATES_FOLDER
@ -637,3 +637,6 @@ def undo_template():
@app.route("/stop", methods=["POST"])
def stop():
print("stopping")
if __name__ == "__main__":
app.run(debug=True)