git clone https://github.com/QFests/QFest.git
cd BookLibrary
python3 -m venv venv
source ./venv/bin/activate
pip install -r requirements.txt
python3 ./run.py
Press CTRL+C to terminate the server.
use deactive
to quit the virtual environment.
Python 3 is recommend, meanwhile this project is compatible with python 2.
You can run this project with docker by running the following commands:
docker build -t qfest:latest .
docker run -ti -v `pwd`:/app -p 4000:4000 qfest:latest
By adding the -v
above, you can make changes in the local files and they will
be reflected inside the docker container. If you want to run it in
"production" mode, skip the above -v
option.