├── Dockerfile ├── LICENSE ├── README.md ├── Tiredful-API.jpg ├── Tiredful-API ├── Tiredful_API │ ├── __init__.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── advertisements │ ├── __init__.py │ ├── apps.py │ ├── models.py │ ├── serializers.py │ ├── templates │ │ └── advertisements │ │ │ └── index.html │ ├── urls.py │ └── views.py ├── blog │ ├── __init__.py │ ├── apps.py │ ├── models.py │ ├── permissions.py │ ├── serializers.py │ ├── templates │ │ └── blog │ │ │ └── index.html │ ├── urls.py │ └── views.py ├── client_cred.txt ├── db.sqlite3 ├── exams │ ├── __init__.py │ ├── apps.py │ ├── models.py │ ├── serializers.py │ ├── templates │ │ └── exams │ │ │ └── index.html │ ├── urls.py │ └── views.py ├── health │ ├── __init__.py │ ├── apps.py │ ├── models.py │ ├── serializers.py │ ├── templates │ │ └── health │ │ │ └── index.html │ ├── urls.py │ └── views.py ├── intro │ ├── __init__.py │ ├── apps.py │ ├── forms.py │ ├── models.py │ ├── templates │ │ └── intro │ │ │ ├── about.html │ │ │ ├── csrf.html │ │ │ ├── index.html │ │ │ ├── scenarios.html │ │ │ └── token.html │ ├── urls.py │ └── views.py ├── library │ ├── __init__.py │ ├── apps.py │ ├── models.py │ ├── serializers.py │ ├── templates │ │ └── library │ │ │ └── index.html │ ├── urls.py │ └── views.py ├── manage.py ├── static │ ├── css │ │ ├── bootstrap-theme.css │ │ ├── bootstrap-theme.css.map │ │ ├── bootstrap-theme.min.css │ │ ├── bootstrap-theme.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ └── bootstrap.min.css.map │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ ├── js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ └── npm.js │ └── rest_framework │ │ ├── css │ │ ├── bootstrap-tweaks.css │ │ ├── bootstrap.min.css │ │ ├── default.css │ │ └── prettify.css │ │ ├── docs │ │ ├── css │ │ │ ├── base.css │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap.min.css │ │ │ ├── font-awesome-4.0.3.css │ │ │ ├── highlight.css │ │ │ └── jquery.json-view.min.css │ │ ├── fonts │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ ├── img │ │ │ ├── favicon.ico │ │ │ └── grid.png │ │ └── js │ │ │ ├── api.js │ │ │ ├── base.js │ │ │ ├── bootstrap.min.js │ │ │ ├── highlight.pack.js │ │ │ ├── jquery-1.10.2.min.js │ │ │ └── jquery.json-view.min.js │ │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ │ ├── img │ │ ├── glyphicons-halflings-white.png │ │ ├── glyphicons-halflings.png │ │ └── grid.png │ │ └── js │ │ ├── ajax-form.js │ │ ├── bootstrap.min.js │ │ ├── coreapi-0.1.0.js │ │ ├── csrf.js │ │ ├── default.js │ │ ├── jquery-1.12.4.min.js │ │ └── prettify-min.js ├── templates │ ├── basic.html │ ├── elements │ │ ├── css-content.html │ │ ├── javascript-content.html │ │ ├── navbar.html │ │ └── sidebar.html │ └── scenario-basic.html └── trains │ ├── __init__.py │ ├── apps.py │ ├── models.py │ ├── serializers.py │ ├── templates │ └── trains │ │ └── index.html │ ├── urls.py │ └── views.py └── requirements.txt /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/README.md -------------------------------------------------------------------------------- /Tiredful-API.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API.jpg -------------------------------------------------------------------------------- /Tiredful-API/Tiredful_API/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/Tiredful_API/__init__.py -------------------------------------------------------------------------------- /Tiredful-API/Tiredful_API/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/Tiredful_API/settings.py -------------------------------------------------------------------------------- /Tiredful-API/Tiredful_API/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/Tiredful_API/urls.py -------------------------------------------------------------------------------- /Tiredful-API/Tiredful_API/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/Tiredful_API/wsgi.py -------------------------------------------------------------------------------- /Tiredful-API/advertisements/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/advertisements/__init__.py -------------------------------------------------------------------------------- /Tiredful-API/advertisements/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/advertisements/apps.py -------------------------------------------------------------------------------- /Tiredful-API/advertisements/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/advertisements/models.py -------------------------------------------------------------------------------- /Tiredful-API/advertisements/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/advertisements/serializers.py -------------------------------------------------------------------------------- /Tiredful-API/advertisements/templates/advertisements/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/advertisements/templates/advertisements/index.html -------------------------------------------------------------------------------- /Tiredful-API/advertisements/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/advertisements/urls.py -------------------------------------------------------------------------------- /Tiredful-API/advertisements/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/advertisements/views.py -------------------------------------------------------------------------------- /Tiredful-API/blog/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/blog/__init__.py -------------------------------------------------------------------------------- /Tiredful-API/blog/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/blog/apps.py -------------------------------------------------------------------------------- /Tiredful-API/blog/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/blog/models.py -------------------------------------------------------------------------------- /Tiredful-API/blog/permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/blog/permissions.py -------------------------------------------------------------------------------- /Tiredful-API/blog/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/blog/serializers.py -------------------------------------------------------------------------------- /Tiredful-API/blog/templates/blog/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/blog/templates/blog/index.html -------------------------------------------------------------------------------- /Tiredful-API/blog/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/blog/urls.py -------------------------------------------------------------------------------- /Tiredful-API/blog/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/blog/views.py -------------------------------------------------------------------------------- /Tiredful-API/client_cred.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/client_cred.txt -------------------------------------------------------------------------------- /Tiredful-API/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/db.sqlite3 -------------------------------------------------------------------------------- /Tiredful-API/exams/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/exams/__init__.py -------------------------------------------------------------------------------- /Tiredful-API/exams/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/exams/apps.py -------------------------------------------------------------------------------- /Tiredful-API/exams/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/exams/models.py -------------------------------------------------------------------------------- /Tiredful-API/exams/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/exams/serializers.py -------------------------------------------------------------------------------- /Tiredful-API/exams/templates/exams/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/exams/templates/exams/index.html -------------------------------------------------------------------------------- /Tiredful-API/exams/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/exams/urls.py -------------------------------------------------------------------------------- /Tiredful-API/exams/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/exams/views.py -------------------------------------------------------------------------------- /Tiredful-API/health/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/health/__init__.py -------------------------------------------------------------------------------- /Tiredful-API/health/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/health/apps.py -------------------------------------------------------------------------------- /Tiredful-API/health/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/health/models.py -------------------------------------------------------------------------------- /Tiredful-API/health/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/health/serializers.py -------------------------------------------------------------------------------- /Tiredful-API/health/templates/health/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/health/templates/health/index.html -------------------------------------------------------------------------------- /Tiredful-API/health/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/health/urls.py -------------------------------------------------------------------------------- /Tiredful-API/health/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/health/views.py -------------------------------------------------------------------------------- /Tiredful-API/intro/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/intro/__init__.py -------------------------------------------------------------------------------- /Tiredful-API/intro/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/intro/apps.py -------------------------------------------------------------------------------- /Tiredful-API/intro/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/intro/forms.py -------------------------------------------------------------------------------- /Tiredful-API/intro/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/intro/models.py -------------------------------------------------------------------------------- /Tiredful-API/intro/templates/intro/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/intro/templates/intro/about.html -------------------------------------------------------------------------------- /Tiredful-API/intro/templates/intro/csrf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/intro/templates/intro/csrf.html -------------------------------------------------------------------------------- /Tiredful-API/intro/templates/intro/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/intro/templates/intro/index.html -------------------------------------------------------------------------------- /Tiredful-API/intro/templates/intro/scenarios.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/intro/templates/intro/scenarios.html -------------------------------------------------------------------------------- /Tiredful-API/intro/templates/intro/token.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/intro/templates/intro/token.html -------------------------------------------------------------------------------- /Tiredful-API/intro/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/intro/urls.py -------------------------------------------------------------------------------- /Tiredful-API/intro/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/intro/views.py -------------------------------------------------------------------------------- /Tiredful-API/library/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/library/__init__.py -------------------------------------------------------------------------------- /Tiredful-API/library/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/library/apps.py -------------------------------------------------------------------------------- /Tiredful-API/library/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/library/models.py -------------------------------------------------------------------------------- /Tiredful-API/library/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/library/serializers.py -------------------------------------------------------------------------------- /Tiredful-API/library/templates/library/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/library/templates/library/index.html -------------------------------------------------------------------------------- /Tiredful-API/library/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/library/urls.py -------------------------------------------------------------------------------- /Tiredful-API/library/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/library/views.py -------------------------------------------------------------------------------- /Tiredful-API/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/manage.py -------------------------------------------------------------------------------- /Tiredful-API/static/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/static/css/bootstrap-theme.css -------------------------------------------------------------------------------- /Tiredful-API/static/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/static/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /Tiredful-API/static/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/static/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /Tiredful-API/static/css/bootstrap-theme.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/static/css/bootstrap-theme.min.css.map -------------------------------------------------------------------------------- /Tiredful-API/static/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/static/css/bootstrap.css -------------------------------------------------------------------------------- /Tiredful-API/static/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/static/css/bootstrap.css.map -------------------------------------------------------------------------------- /Tiredful-API/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /Tiredful-API/static/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/static/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /Tiredful-API/static/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/static/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /Tiredful-API/static/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/static/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /Tiredful-API/static/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/static/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /Tiredful-API/static/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/static/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /Tiredful-API/static/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/static/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /Tiredful-API/static/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/static/js/bootstrap.js -------------------------------------------------------------------------------- /Tiredful-API/static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /Tiredful-API/static/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/static/js/npm.js -------------------------------------------------------------------------------- /Tiredful-API/static/rest_framework/css/bootstrap-tweaks.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/static/rest_framework/css/bootstrap-tweaks.css -------------------------------------------------------------------------------- /Tiredful-API/static/rest_framework/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/static/rest_framework/css/bootstrap.min.css -------------------------------------------------------------------------------- /Tiredful-API/static/rest_framework/css/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/static/rest_framework/css/default.css -------------------------------------------------------------------------------- /Tiredful-API/static/rest_framework/css/prettify.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/static/rest_framework/css/prettify.css -------------------------------------------------------------------------------- /Tiredful-API/static/rest_framework/docs/css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/static/rest_framework/docs/css/base.css -------------------------------------------------------------------------------- /Tiredful-API/static/rest_framework/docs/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/static/rest_framework/docs/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /Tiredful-API/static/rest_framework/docs/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/static/rest_framework/docs/css/bootstrap.min.css -------------------------------------------------------------------------------- /Tiredful-API/static/rest_framework/docs/css/font-awesome-4.0.3.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/static/rest_framework/docs/css/font-awesome-4.0.3.css -------------------------------------------------------------------------------- /Tiredful-API/static/rest_framework/docs/css/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/static/rest_framework/docs/css/highlight.css -------------------------------------------------------------------------------- /Tiredful-API/static/rest_framework/docs/css/jquery.json-view.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/static/rest_framework/docs/css/jquery.json-view.min.css -------------------------------------------------------------------------------- /Tiredful-API/static/rest_framework/docs/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/static/rest_framework/docs/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /Tiredful-API/static/rest_framework/docs/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/static/rest_framework/docs/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /Tiredful-API/static/rest_framework/docs/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/static/rest_framework/docs/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /Tiredful-API/static/rest_framework/docs/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/static/rest_framework/docs/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /Tiredful-API/static/rest_framework/docs/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/static/rest_framework/docs/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /Tiredful-API/static/rest_framework/docs/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/static/rest_framework/docs/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /Tiredful-API/static/rest_framework/docs/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/static/rest_framework/docs/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /Tiredful-API/static/rest_framework/docs/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/static/rest_framework/docs/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /Tiredful-API/static/rest_framework/docs/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/static/rest_framework/docs/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /Tiredful-API/static/rest_framework/docs/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/static/rest_framework/docs/img/favicon.ico -------------------------------------------------------------------------------- /Tiredful-API/static/rest_framework/docs/img/grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/static/rest_framework/docs/img/grid.png -------------------------------------------------------------------------------- /Tiredful-API/static/rest_framework/docs/js/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/static/rest_framework/docs/js/api.js -------------------------------------------------------------------------------- /Tiredful-API/static/rest_framework/docs/js/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/static/rest_framework/docs/js/base.js -------------------------------------------------------------------------------- /Tiredful-API/static/rest_framework/docs/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/static/rest_framework/docs/js/bootstrap.min.js -------------------------------------------------------------------------------- /Tiredful-API/static/rest_framework/docs/js/highlight.pack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/static/rest_framework/docs/js/highlight.pack.js -------------------------------------------------------------------------------- /Tiredful-API/static/rest_framework/docs/js/jquery-1.10.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/static/rest_framework/docs/js/jquery-1.10.2.min.js -------------------------------------------------------------------------------- /Tiredful-API/static/rest_framework/docs/js/jquery.json-view.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/static/rest_framework/docs/js/jquery.json-view.min.js -------------------------------------------------------------------------------- /Tiredful-API/static/rest_framework/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/static/rest_framework/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /Tiredful-API/static/rest_framework/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/static/rest_framework/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /Tiredful-API/static/rest_framework/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/static/rest_framework/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /Tiredful-API/static/rest_framework/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/static/rest_framework/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /Tiredful-API/static/rest_framework/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/static/rest_framework/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /Tiredful-API/static/rest_framework/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/static/rest_framework/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /Tiredful-API/static/rest_framework/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/static/rest_framework/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /Tiredful-API/static/rest_framework/img/grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/static/rest_framework/img/grid.png -------------------------------------------------------------------------------- /Tiredful-API/static/rest_framework/js/ajax-form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/static/rest_framework/js/ajax-form.js -------------------------------------------------------------------------------- /Tiredful-API/static/rest_framework/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/static/rest_framework/js/bootstrap.min.js -------------------------------------------------------------------------------- /Tiredful-API/static/rest_framework/js/coreapi-0.1.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/static/rest_framework/js/coreapi-0.1.0.js -------------------------------------------------------------------------------- /Tiredful-API/static/rest_framework/js/csrf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/static/rest_framework/js/csrf.js -------------------------------------------------------------------------------- /Tiredful-API/static/rest_framework/js/default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/static/rest_framework/js/default.js -------------------------------------------------------------------------------- /Tiredful-API/static/rest_framework/js/jquery-1.12.4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/static/rest_framework/js/jquery-1.12.4.min.js -------------------------------------------------------------------------------- /Tiredful-API/static/rest_framework/js/prettify-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/static/rest_framework/js/prettify-min.js -------------------------------------------------------------------------------- /Tiredful-API/templates/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/templates/basic.html -------------------------------------------------------------------------------- /Tiredful-API/templates/elements/css-content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/templates/elements/css-content.html -------------------------------------------------------------------------------- /Tiredful-API/templates/elements/javascript-content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/templates/elements/javascript-content.html -------------------------------------------------------------------------------- /Tiredful-API/templates/elements/navbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/templates/elements/navbar.html -------------------------------------------------------------------------------- /Tiredful-API/templates/elements/sidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/templates/elements/sidebar.html -------------------------------------------------------------------------------- /Tiredful-API/templates/scenario-basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/templates/scenario-basic.html -------------------------------------------------------------------------------- /Tiredful-API/trains/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/trains/__init__.py -------------------------------------------------------------------------------- /Tiredful-API/trains/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/trains/apps.py -------------------------------------------------------------------------------- /Tiredful-API/trains/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/trains/models.py -------------------------------------------------------------------------------- /Tiredful-API/trains/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/trains/serializers.py -------------------------------------------------------------------------------- /Tiredful-API/trains/templates/trains/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/trains/templates/trains/index.html -------------------------------------------------------------------------------- /Tiredful-API/trains/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/trains/urls.py -------------------------------------------------------------------------------- /Tiredful-API/trains/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/Tiredful-API/trains/views.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payatu/Tiredful-API/HEAD/requirements.txt --------------------------------------------------------------------------------