Skip to content

Latest commit

 

History

History
executable file
·
28 lines (20 loc) · 1.14 KB

File metadata and controls

executable file
·
28 lines (20 loc) · 1.14 KB

Django project called MDB, the Mobile Database, which is a database of mobiles specs exposed through a REST API.

The API is currently able to create, delete and list mobiles using JSON representations.

Image Status

Codefresh build status

Test results

alt tag

Code Quality

Code Health

Setup


To install the dependencies, run:
python setup.py install
Then, create the sqlite database and load sample data:
python manage.py makemigrations
python manage.py migrate
python manage.py loaddata sample_mobiles

Running tests:
python manage.py test