├── .bowerrc ├── .gitignore ├── .pep8 ├── Dockerfile ├── Gruntfile.coffee ├── Makefile ├── Readme.markdown ├── bower.json ├── docker-compose.yml ├── example ├── __init__.py ├── api │ ├── __init__.py │ ├── admin.py │ ├── api.py │ ├── auth.py │ ├── management │ │ ├── __init__.py │ │ └── commands │ │ │ ├── __init__.py │ │ │ ├── create_photos.py │ │ │ ├── create_posts.py │ │ │ └── create_users.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20150525_1522.py │ │ └── __init__.py │ ├── models.py │ ├── permissions.py │ ├── serializers.py │ ├── templates │ │ ├── base.html │ │ ├── basic.html │ │ ├── editor.html │ │ ├── index.html │ │ ├── manage.html │ │ ├── photos.html │ │ ├── playground.html │ │ ├── resource.html │ │ └── static.html │ └── urls.py ├── assets │ └── .gitignore ├── media │ └── samples │ │ ├── boston.jpg │ │ ├── costa_rican_frog.jpg │ │ └── parakeet.jpg ├── settings.py ├── src │ └── js │ │ ├── app.basic.coffee │ │ ├── app.editor.coffee │ │ ├── app.manage.coffee │ │ ├── app.photos.coffee │ │ ├── app.playground.coffee │ │ ├── app.resource.coffee │ │ ├── app.static.coffee │ │ ├── app.update.coffee │ │ └── service │ │ ├── api.coffee │ │ └── playground.coffee ├── urls.py └── wsgi.py ├── manage.py ├── package.json ├── requirements.txt ├── scripts └── create_db.sh └── setup.py /.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "example/assets" 3 | } -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinastone/django-api-rest-and-angular/HEAD/.gitignore -------------------------------------------------------------------------------- /.pep8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinastone/django-api-rest-and-angular/HEAD/.pep8 -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinastone/django-api-rest-and-angular/HEAD/Dockerfile -------------------------------------------------------------------------------- /Gruntfile.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinastone/django-api-rest-and-angular/HEAD/Gruntfile.coffee -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinastone/django-api-rest-and-angular/HEAD/Makefile -------------------------------------------------------------------------------- /Readme.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinastone/django-api-rest-and-angular/HEAD/Readme.markdown -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinastone/django-api-rest-and-angular/HEAD/bower.json -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinastone/django-api-rest-and-angular/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /example/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/api/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinastone/django-api-rest-and-angular/HEAD/example/api/admin.py -------------------------------------------------------------------------------- /example/api/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinastone/django-api-rest-and-angular/HEAD/example/api/api.py -------------------------------------------------------------------------------- /example/api/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinastone/django-api-rest-and-angular/HEAD/example/api/auth.py -------------------------------------------------------------------------------- /example/api/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/api/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/api/management/commands/create_photos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinastone/django-api-rest-and-angular/HEAD/example/api/management/commands/create_photos.py -------------------------------------------------------------------------------- /example/api/management/commands/create_posts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinastone/django-api-rest-and-angular/HEAD/example/api/management/commands/create_posts.py -------------------------------------------------------------------------------- /example/api/management/commands/create_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinastone/django-api-rest-and-angular/HEAD/example/api/management/commands/create_users.py -------------------------------------------------------------------------------- /example/api/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinastone/django-api-rest-and-angular/HEAD/example/api/migrations/0001_initial.py -------------------------------------------------------------------------------- /example/api/migrations/0002_auto_20150525_1522.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinastone/django-api-rest-and-angular/HEAD/example/api/migrations/0002_auto_20150525_1522.py -------------------------------------------------------------------------------- /example/api/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/api/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinastone/django-api-rest-and-angular/HEAD/example/api/models.py -------------------------------------------------------------------------------- /example/api/permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinastone/django-api-rest-and-angular/HEAD/example/api/permissions.py -------------------------------------------------------------------------------- /example/api/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinastone/django-api-rest-and-angular/HEAD/example/api/serializers.py -------------------------------------------------------------------------------- /example/api/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinastone/django-api-rest-and-angular/HEAD/example/api/templates/base.html -------------------------------------------------------------------------------- /example/api/templates/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinastone/django-api-rest-and-angular/HEAD/example/api/templates/basic.html -------------------------------------------------------------------------------- /example/api/templates/editor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinastone/django-api-rest-and-angular/HEAD/example/api/templates/editor.html -------------------------------------------------------------------------------- /example/api/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinastone/django-api-rest-and-angular/HEAD/example/api/templates/index.html -------------------------------------------------------------------------------- /example/api/templates/manage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinastone/django-api-rest-and-angular/HEAD/example/api/templates/manage.html -------------------------------------------------------------------------------- /example/api/templates/photos.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinastone/django-api-rest-and-angular/HEAD/example/api/templates/photos.html -------------------------------------------------------------------------------- /example/api/templates/playground.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinastone/django-api-rest-and-angular/HEAD/example/api/templates/playground.html -------------------------------------------------------------------------------- /example/api/templates/resource.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinastone/django-api-rest-and-angular/HEAD/example/api/templates/resource.html -------------------------------------------------------------------------------- /example/api/templates/static.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinastone/django-api-rest-and-angular/HEAD/example/api/templates/static.html -------------------------------------------------------------------------------- /example/api/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinastone/django-api-rest-and-angular/HEAD/example/api/urls.py -------------------------------------------------------------------------------- /example/assets/.gitignore: -------------------------------------------------------------------------------- 1 | !.gitignore 2 | * -------------------------------------------------------------------------------- /example/media/samples/boston.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinastone/django-api-rest-and-angular/HEAD/example/media/samples/boston.jpg -------------------------------------------------------------------------------- /example/media/samples/costa_rican_frog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinastone/django-api-rest-and-angular/HEAD/example/media/samples/costa_rican_frog.jpg -------------------------------------------------------------------------------- /example/media/samples/parakeet.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinastone/django-api-rest-and-angular/HEAD/example/media/samples/parakeet.jpg -------------------------------------------------------------------------------- /example/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinastone/django-api-rest-and-angular/HEAD/example/settings.py -------------------------------------------------------------------------------- /example/src/js/app.basic.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinastone/django-api-rest-and-angular/HEAD/example/src/js/app.basic.coffee -------------------------------------------------------------------------------- /example/src/js/app.editor.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinastone/django-api-rest-and-angular/HEAD/example/src/js/app.editor.coffee -------------------------------------------------------------------------------- /example/src/js/app.manage.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinastone/django-api-rest-and-angular/HEAD/example/src/js/app.manage.coffee -------------------------------------------------------------------------------- /example/src/js/app.photos.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinastone/django-api-rest-and-angular/HEAD/example/src/js/app.photos.coffee -------------------------------------------------------------------------------- /example/src/js/app.playground.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinastone/django-api-rest-and-angular/HEAD/example/src/js/app.playground.coffee -------------------------------------------------------------------------------- /example/src/js/app.resource.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinastone/django-api-rest-and-angular/HEAD/example/src/js/app.resource.coffee -------------------------------------------------------------------------------- /example/src/js/app.static.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinastone/django-api-rest-and-angular/HEAD/example/src/js/app.static.coffee -------------------------------------------------------------------------------- /example/src/js/app.update.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinastone/django-api-rest-and-angular/HEAD/example/src/js/app.update.coffee -------------------------------------------------------------------------------- /example/src/js/service/api.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinastone/django-api-rest-and-angular/HEAD/example/src/js/service/api.coffee -------------------------------------------------------------------------------- /example/src/js/service/playground.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinastone/django-api-rest-and-angular/HEAD/example/src/js/service/playground.coffee -------------------------------------------------------------------------------- /example/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinastone/django-api-rest-and-angular/HEAD/example/urls.py -------------------------------------------------------------------------------- /example/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinastone/django-api-rest-and-angular/HEAD/example/wsgi.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinastone/django-api-rest-and-angular/HEAD/manage.py -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinastone/django-api-rest-and-angular/HEAD/package.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinastone/django-api-rest-and-angular/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/create_db.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinastone/django-api-rest-and-angular/HEAD/setup.py --------------------------------------------------------------------------------