Skip to content

Latest commit

 

History

History
40 lines (26 loc) · 701 Bytes

README.md

File metadata and controls

40 lines (26 loc) · 701 Bytes

thewhitehat.club

This is a Flask app to run https://thewhitehat.club


Running the App (Development)

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