Skip to content

Latest commit

 

History

History
59 lines (37 loc) · 1.88 KB

README.md

File metadata and controls

59 lines (37 loc) · 1.88 KB

Django & Python Color Voting App

TL;DR DIY:

  • You must have python v3.6+ and django 2 installed
  1. git clone https://github.com/krosenk729/green-py-noumenalism.git
  2. cd into cloned folder and run python3 manage.py makemigrations
  3. run python3 manage.py migrate
  4. Run python manage.py runserver 8000
  5. Visit http://localhost:8000/

Look Before You Clone?

Screenshots of the app

Landing page - choose to vote or view results

landing


Vote page - given a random word, choose what color it makes you think of

vote


Results page - for each word, see swatches of votes and an analysis of how much red/green/blue is attributed to that word

results

Clear Some Things

To run shell: python manage.py shell To reset all the things: python manage.py flush If things get real bad: python manage.py migrate --fake color_vote zero

python manage.py makemmigrations color_vote
python manage.py migrate 
python manage.py createsuperuser
python manage.py runserver

Click Some Links