This is a simple music service API for learning the Django REST Framework.
The goal of this project is to get my hands on wet on Django REST framework.
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
- Postgresql - this is a database server
- Use Python 3.x.x+
- Use Django 2.x.x+
$ 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
$ python manage.py runserver