├── Acornfile ├── README.md └── mysite ├── Dockerfile ├── api ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── serializers.py ├── tests.py ├── urls.py └── views.py ├── db-script.sh ├── db.sqlite3 ├── manage.py ├── mysite ├── __init__.py ├── asgi.py ├── settings.py ├── urls.py └── wsgi.py └── requirements.txt /Acornfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/django-rest-api/HEAD/Acornfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/django-rest-api/HEAD/README.md -------------------------------------------------------------------------------- /mysite/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/django-rest-api/HEAD/mysite/Dockerfile -------------------------------------------------------------------------------- /mysite/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mysite/api/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/django-rest-api/HEAD/mysite/api/admin.py -------------------------------------------------------------------------------- /mysite/api/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/django-rest-api/HEAD/mysite/api/apps.py -------------------------------------------------------------------------------- /mysite/api/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/django-rest-api/HEAD/mysite/api/migrations/0001_initial.py -------------------------------------------------------------------------------- /mysite/api/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mysite/api/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/django-rest-api/HEAD/mysite/api/models.py -------------------------------------------------------------------------------- /mysite/api/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/django-rest-api/HEAD/mysite/api/serializers.py -------------------------------------------------------------------------------- /mysite/api/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/django-rest-api/HEAD/mysite/api/tests.py -------------------------------------------------------------------------------- /mysite/api/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/django-rest-api/HEAD/mysite/api/urls.py -------------------------------------------------------------------------------- /mysite/api/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/django-rest-api/HEAD/mysite/api/views.py -------------------------------------------------------------------------------- /mysite/db-script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/django-rest-api/HEAD/mysite/db-script.sh -------------------------------------------------------------------------------- /mysite/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/django-rest-api/HEAD/mysite/db.sqlite3 -------------------------------------------------------------------------------- /mysite/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/django-rest-api/HEAD/mysite/manage.py -------------------------------------------------------------------------------- /mysite/mysite/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mysite/mysite/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/django-rest-api/HEAD/mysite/mysite/asgi.py -------------------------------------------------------------------------------- /mysite/mysite/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/django-rest-api/HEAD/mysite/mysite/settings.py -------------------------------------------------------------------------------- /mysite/mysite/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/django-rest-api/HEAD/mysite/mysite/urls.py -------------------------------------------------------------------------------- /mysite/mysite/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/django-rest-api/HEAD/mysite/mysite/wsgi.py -------------------------------------------------------------------------------- /mysite/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/django-rest-api/HEAD/mysite/requirements.txt --------------------------------------------------------------------------------