Install the venv package
sudo apt install python3-venv
Initialize a new virtual environment
python3 -m venv ../encrypted-file-project/venv
Activate the virtual environment
source ../encrypted-file-project/venv/bin/activate
Install required packages
pip install -r ../encrypted-file-project/app/requirements.txt
Modify the SecretKey
and ProjectDirectory
values in settings.ini
Make sure the virtual environment is activated
source ../encrypted-file-project/venv/bin/activate
Run the application with gunicorn
cd ../encrypted-file-project/app
gunicorn --bind 127.0.0.1:5000 wsgi:app