This is a Flask app to run https://thewhitehat.club
- To run the site, install virtualenv on your machine with:
pip3 install vitualenv- Create a new virtualenv in the root of the git repository and activate it with :
virtualenv venv
source venv/bin/activate- Install the required pip packages with
pip3 install -r requirements.txt- Create the empty directory
static/css
mkdir static/css- And finally, run the app with
python3 app.py- Visit 0.0.0.0:3000 to view the site running locally.