A few steps are needed to setup the viewflow demo. Run these steps within the project folder.
- Clone the repository:
git clone git@github.com:4teamwork/userstories-material.git
- Change to repository
cd userstories-material
- Create and activate a python virtual environment:
python3 -m venv . && source bin/activate
- Install the requirements:
pip install -r requirements-dev.txt
- Run the migrations:
./manage.py migrate
- Create a super user:
./manage.py createsuperuser
Finally start the django server and navigate to http://localhost:8000/
./manage.py runserver