From 0861fc0080be4b6dc8a117ec3618d4350f1df173 Mon Sep 17 00:00:00 2001 From: PartTimeHarmacist Date: Thu, 14 Jul 2022 23:32:25 -0500 Subject: [PATCH] Initial commit --- .gitignore | 3 +++ README.md | 8 ++++++++ app.py | 12 ++++++++++++ 3 files changed, 23 insertions(+) create mode 100644 .gitignore create mode 100644 README.md create mode 100644 app.py diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..6027e98 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +.idea/ +venv/ +static/ \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..099f75e --- /dev/null +++ b/README.md @@ -0,0 +1,8 @@ +# Spool - Description + +Spool is a self-hosted browser for thread based forums, with a focus on automation and archiving. + +# Functionality +- [ ] Monitor for and automatically archive threads created with varying specificity of criteria +- [ ] Reply to threads directly from the app +- [ ] View/Monitor multiple threads at one time diff --git a/app.py b/app.py new file mode 100644 index 0000000..0b2586c --- /dev/null +++ b/app.py @@ -0,0 +1,12 @@ +from flask import Flask + +app = Flask(__name__) + + +@app.route('/') +def hello_world(): # put application's code here + return "Welcome to the initial commit - there's nothing here right now..." + + +if __name__ == '__main__': + app.run()