CalPolySEC / thewhitehat.club

The White Hat Website
https://thewhitehat.club
MIT License
1 stars 3 forks source link

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.