Project Development Interface for Social Justice and Advocacy Work
To see mock-up, go to awmachine/ and open index.html with web browser.
Getting the app up and running on your localhost
apt install pip # debian / ubuntu
easy_install pip # mac (may have to use sudo)sudo pip install virtualenvgit clone https://github.com/apongos/awmachine
cd awmachine
virtualenv venv
source venv/bin/activate
pip install -r requirements.txt
./manage.py runserver # serve on port 8000, view in browser; Ctrl+C to kill process
deactivate # turn off virtual environment
````