Censeo is an app that will help simplify your team's story pointing meetings.
-
Register for an account if you don't already have one.
-
Login and join the meeting. A continuously updated list of voters in the meeting will be displayed. Votes for a ticket will not be visible until all voters have voted on that ticket.
-
Quickly add tickets to the meeting. When no tickets are currently selected, the ticket list will remain up to date with all tickets added.
-
Click on a ticket to vote or see its results. When a ticket is selected, the list of tickets stops automatically updating, and the voting results for that ticket begin to update automatically. Click on the same ticket again to de-select it, stop the automatic updates for voting results, and restart the automatic updates to the ticket list.
- git
- npm
- virtualenv
- virtualenvwrapper
To setup Censeo for local development, run the following commands:
Replace all occurrences of <PROJECT NAME> in the following commands, with the name of your project
-
This script will setup the virtual environment, clone the repository, and install the requirements:
curl https://raw.githubusercontent.com/cjflory/censeo/master/setup_dev.sh | sh -s <PROJECT NAME>
-
Activate the virtual environment and navigate to the project root:
workon <PROJECT NAME> cdvirtualenv src/<PROJECT NAME>
-
Setup the database initially:
django-admin.py db_reset
-
Start the Django server:
django-admin.py runserver 0.0.0.0:8000
-
Navigate to http://0.0.0.0:8000/ (default username is myuser, default password is asdfasdf)
- Add more tests