Create a Django app that implements a catalogue of music.
$ python3 -m venv .venv
$ source venv/bin/activate
$ pip install -r requirements.txt
$ vim .env
DEBUG=on
SECRET_KEY='YOUR-SECRETKEY'
SQLITE_URL='YOUR-SQLITE-LOCATION'
API_PAGE_SIZE=5
$ python manage.py makemigrations
$ python manage.py migrate
$ python manage.py loaddata initial_data
$ python manage.py createsuperuser
$ python manage.py runserver
Log into the Django admin:
Browse the REST API at:
$ python manage.py test