- Clone the repository
git clone https://github.com/willjw3/kanri-django.git my-app
- Move into the new directory (called
my-app
in this case; call it what you like)
cd my-app
- Install the dependencies (remove dependencies you don't need from the requirements.txt file)
pip install -r requirements.txt
- Run
python manage.py makemigrations
andpython manage.py migrate
- Create a super user
python manage.py createsuperuser
- Run the web server
python manage.py runserver