Initial commit

This commit is contained in:
PartTimeHarmacist 2022-07-14 23:32:25 -05:00
commit 0861fc0080
3 changed files with 23 additions and 0 deletions

3
.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
.idea/
venv/
static/

8
README.md Normal file
View File

@ -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

12
app.py Normal file
View File

@ -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()