A guest book written in Python & Flask
|
||
---|---|---|
database | ||
static | ||
templates | ||
.gitignore | ||
.prettierrc | ||
app.py | ||
README.md |
GayBook
This is a simple GuestBook software written in Python, using Flask!
It uses a sqlite database for storage, and avoids spam with a simple proof-of-work system
Running
You'll need python and flask installed on your machine.
First, set up the database
$ cd database/
$ python setup_db.py
Then, run the Flask app
$ python app.py
To run in debug mode, use
$ FLASK_DEBUG=1 python app.py