Skip to content

URN/studiobooking

Repository files navigation

studiobooking

A small flask app written to facilitate booking out practice/pre-recording/interview time of URN studios.

Setup

Install requirements

pip install -r requirements.txt

Change the secret key and admin password

cp settings.example.py settings.py
vim settings.py

Initialise the database

python createdb.py

Run

python __init__.py

Browse to

http://localhost:5000

In production however this should definitely be served behind nginx or similar, and with a WSGI server (e.g. gunicorn)