gaybook/README.md

452 B

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