Boards. Agile, scrum, travel itineraries, whatever you want.
The frontend, built with Vue, is in this repo.
git clone https://github.com/mellkior/kanban.git
Create a virtual environment in the project root
python -m venv env
Activate the environment
Mac OS or Linux:
source env/bin/activate
Windows:
env\Scripts\activate
pip install -r requirements.txt
django does this for us with a single command
manage.py migrate
manage.py createsuperuser
set DEBUG = "True" and SECRET_KEY = "a_long_random_string"
manage.py runserver
If you get a "Bad Request (400)" when you visit http://127.0.0.1:8000/, you probably didn't set DEBUG=True
.
In bash, use export DEBUG=True
before running manage.py runserver
. In Windows command prompt, use set DEBUG=True
. Alternatively, you can edit settings.py.