Skip to content

Latest commit

 

History

History
22 lines (19 loc) · 874 Bytes

README.md

File metadata and controls

22 lines (19 loc) · 874 Bytes

example-django

A simple django application exposing a REST API with automatic generation of Swagger documentation.

git clone https://github.com/greglever/example-django.git
cd example-django
chmod 754 ./run_application.sh
./run_application.sh

if everything has built correctly then you should see the following:

example_app_1  | Django version 1.11.1, using settings 'ExampleProject.settings'
example_app_1  | Starting development server at http://0.0.0.0:8000/
example_app_1  | Quit the server with CONTROL-C.

and if you navigate to http://0.0.0.0:8000/api/docs then you should see a page that looks like the following:

Example Swagger Page