Skip to content

Latest commit

 

History

History
44 lines (33 loc) · 735 Bytes

README.md

File metadata and controls

44 lines (33 loc) · 735 Bytes

userstory-material

Development

Setup

A few steps are needed to setup the viewflow demo. Run these steps within the project folder.

  1. Clone the repository:
git clone git@github.com:4teamwork/userstories-material.git
  1. Change to repository
cd userstories-material
  1. Create and activate a python virtual environment:
python3 -m venv . && source bin/activate
  1. Install the requirements:
pip install -r requirements-dev.txt
  1. Run the migrations:
./manage.py migrate
  1. Create a super user:
./manage.py createsuperuser

Finally start the django server and navigate to http://localhost:8000/

./manage.py runserver