├── .gitignore ├── LICENSE ├── Procfile ├── README.md ├── core ├── __init__.py ├── admin.py ├── apps.py ├── forms.py ├── migrations │ └── __init__.py ├── models.py ├── templates │ └── core │ │ ├── github.html │ │ ├── home.html │ │ └── oxford.html ├── tests.py ├── urls.py └── views.py ├── manage.py ├── mysite ├── __init__.py ├── settings.py ├── urls.py └── wsgi.py ├── requirements.txt ├── runtime.txt └── templates └── base.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibtc/restful-apis-example/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibtc/restful-apis-example/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn mysite.wsgi --log-file - -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibtc/restful-apis-example/HEAD/README.md -------------------------------------------------------------------------------- /core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibtc/restful-apis-example/HEAD/core/admin.py -------------------------------------------------------------------------------- /core/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibtc/restful-apis-example/HEAD/core/apps.py -------------------------------------------------------------------------------- /core/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibtc/restful-apis-example/HEAD/core/forms.py -------------------------------------------------------------------------------- /core/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibtc/restful-apis-example/HEAD/core/models.py -------------------------------------------------------------------------------- /core/templates/core/github.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibtc/restful-apis-example/HEAD/core/templates/core/github.html -------------------------------------------------------------------------------- /core/templates/core/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibtc/restful-apis-example/HEAD/core/templates/core/home.html -------------------------------------------------------------------------------- /core/templates/core/oxford.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibtc/restful-apis-example/HEAD/core/templates/core/oxford.html -------------------------------------------------------------------------------- /core/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibtc/restful-apis-example/HEAD/core/tests.py -------------------------------------------------------------------------------- /core/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibtc/restful-apis-example/HEAD/core/urls.py -------------------------------------------------------------------------------- /core/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibtc/restful-apis-example/HEAD/core/views.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibtc/restful-apis-example/HEAD/manage.py -------------------------------------------------------------------------------- /mysite/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mysite/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibtc/restful-apis-example/HEAD/mysite/settings.py -------------------------------------------------------------------------------- /mysite/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibtc/restful-apis-example/HEAD/mysite/urls.py -------------------------------------------------------------------------------- /mysite/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibtc/restful-apis-example/HEAD/mysite/wsgi.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibtc/restful-apis-example/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.6.4 -------------------------------------------------------------------------------- /templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibtc/restful-apis-example/HEAD/templates/base.html --------------------------------------------------------------------------------