Skip to content

Latest commit

 

History

History
30 lines (26 loc) · 685 Bytes

File metadata and controls

30 lines (26 loc) · 685 Bytes

BookLibrary

Simple Book library application written on flask with SQLite database.

Usage

For Unix users

git clone https://github.com/falsefox13/Library.git
cd Library
python3 -m venv venv
source ./venv/bin/activate
pip install -r requirements.txt
python3 ./run.py

For Windows users

git clone https://github.com/falsefox13/Library.git
cd Library
python3 -m venv venv
cd venv/Scripts
activate.bat
cd ..
pip install -r requirements.txt
python3 ./run.py

Press CTRL+C to terminate the server.
use deactive or venv/Scripts/deactivate.bat to quit the virtual environment.

Python 3 is recommended, meanwhile this project is compatible with python 2.