This is a simple music service API that I created as an example for a tutorial for learning Django REST Framework.
The goal of this project is teach Django REST framework on novice programmers.
With this API;
- You can create, view, update, and delete a song
Tools used during the development of this API are;
- Django - a python web framework
- Django REST Framework - a flexible toolkit to build web APIs
- SQLite - this is a database server
- Use Python 3.x.x+
- Use Django 2.x.x+
"Code without tests is broken as designed", said Jacob Kaplan-Moss. Therefore i shall not give you code that can not be tested or has no tests. So, to run tests, enter the following command
$ python manage.py test
To run this application, clone the repository on your local machine and execute the following command.
$ cd music_service
$ virtualenv virtenv
$ source virtenv/bin/activate
$ pip install -r requirements.txt
$ python manage.py makemigrations
$ python manage.py migrate
$ nohup python manage.py runserver & disown