A guest book written in Python & Flask
Find a file
2023-06-01 11:48:52 +02:00
database Initial commit: Added current work! 2023-06-01 11:48:52 +02:00
static Initial commit: Added current work! 2023-06-01 11:48:52 +02:00
templates Initial commit: Added current work! 2023-06-01 11:48:52 +02:00
.gitignore Initial commit: Added current work! 2023-06-01 11:48:52 +02:00
.prettierrc Initial commit: Added current work! 2023-06-01 11:48:52 +02:00
app.py Initial commit: Added current work! 2023-06-01 11:48:52 +02:00
README.md Initial commit: Added current work! 2023-06-01 11:48:52 +02:00

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