/todo-api

Primary LanguagePython

ToDo-API

How to debug.

  1. Clone.
git clone https://github.com/chun37/todo-api.git
  1. Install dependencies.
pipenv install
  1. Copy .env file.
cp .env-sample .env
  1. Generate secret key.
python -c 'from django.core.management.utils import get_random_secret_key; print(get_random_secret_key())'
  1. Write the key to an .env file.

  2. Initialize database.

pipenv run python manage.py migrate
  1. Run!!!!
pipenv run python manage.py runserver