This is a Library Website made with Python, SQL and Flask for a School Project
Tipp: Use a virtual Envoirment
pip install -r requirements.txt
You can either use the sample Database in library_db/library.db or create your own one with the structure given in the db_create.sql file and copy it to library_db/library.db
Admin user Credentials:
Email: [email protected] Password: admin1234
Without Debugging:
python wsgi.py
With Debugging:
python -m library_db.app
You can also specify a host and port in wsgi.py like so:
...
if __name__ == "__main__":
app.run(host='<The Host>', port=<The Port>)