commit 0861fc0080be4b6dc8a117ec3618d4350f1df173 Author: PartTimeHarmacist Date: Thu Jul 14 23:32:25 2022 -0500 Initial commit 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()