An API Music history by Drew. Used to expose relevant database resources for view, creation, editing, or deletion.
##Steps to Install
The API uses the Django framework, running on Python 3.6
To install the project locally:
- Set up Python 3.6 on your machine per the install instructions
- Install pip
- Install Django 1.10.5 via pip:
pip install django - Clone the repository to desired location
- Migrate the database tables. In the main project directory
~/drewsmusic/musicHistory(wheremanage.pyis located), run the commandpython manage.py migrate - Start the development server. Run the command
python manage.py runserver. Take note of the IP address and host port given. - Start a browser, and navigate to the IP and port, followed by
/api/. i.e.127.0.0.1:8000/api/.
##Installed Dependencies
The API relies upon the following dependencies:
- Python >v.3.6
- Django >v1.10.5
##System Config
The API should run on all systems that meet the dependency requirements.