A boilerplate application for Django web applications.

David Leonard 28729d24d6 Removing images from api_examples template, adding JSONResponse comment for Github view 10 yıl önce
hackathon_starter 28729d24d6 Removing images from api_examples template, adding JSONResponse comment for Github view 10 yıl önce
public 2b6e5f8442 Separating front-end dependencies between AngularJS client and Django Hackathon Starter 10 yıl önce
.hgignore 3a3b4e03f9 Initializing AngularJS client 10 yıl önce
README.md 9cc92cea52 Minor fix: fixing syntax errors with readme 10 yıl önce
bower.json 2b6e5f8442 Separating front-end dependencies between AngularJS client and Django Hackathon Starter 10 yıl önce
requirements.txt bd71a8fd46 Installing django-cors-headers, updating settings.py to send headers with all http requests 10 yıl önce

README.md

Django Hackathon Starter

What is Django Hackathon Starter

Django Hackathon Starter aims to be a project which will aggegrate data from several APIs, producing a RESTful API which can be consumed by a client (also intended to be built).

Our deployment can be found here.

Running this project

In order to run this project, do the following:

# Install the requirements
pip install -r requirements.txt

# Perform database migrations
python manage.py migrate

# Run the server
python manage.py runserver

Front End dependencies

This project relies on Bower for all front end libraries, to avoid pushing up large libraries such as jQuery and Bootstrap. To install bower, you will need to install npm, which now comes bundled with node.js. To install npm, simply install node as follows.

First, install bower:

npm install -g bower

Then:

# In the same directory as requirements.txt
bower install

This will download and extract all the packages listed within bower.json. Under no circumstance should any front-end libraries manually be pushed up to the repository.

Then:

# move bower_components into static folder
mv bower_components/ hackathon_starter/hackathon/static

To install the front-end dependencies for the AngularJS client, do the following:

cd public
bower install
# Rename bower_components folder to vendor
mv bower_components/ vendor/

Testing

This project aims to be as close to 100% tested as possible. For a good guide to testing using Python and Mock, Nosetests and Unittests libraries, please read here.

To run the tests:

hackthon-starter $ python manage.py test hackathon/unittests/

Code evaluation

In order to write clean code with a consistent style guide, we'll be using Pylint to maintain our code. Pylint will display a ton of messages regarding things that should be fixed.

RESTful endpoints

Using the `Django REST framework, the current RESTful endpoints exist:

http://127.0.0.1:8000/hackathon/snippets/

The list will appear empty at first, since the database model Snippets will be empty. To populate it with some sample data, run the following:

python manage.py shell
from hackathon.models import Snippet
from hackathon.serializers import SnippetSerializer
from rest_framework.renderers import JSONRenderer
from rest_framework.parsers import JSONParser

snippet = Snippet(code='foo = "bar"\n')
snippet.save()

snippet = Snippet(code='print "hello, world"\n')
snippet.save()

The above will open the Django shell, and allow you to create objects and save them to the database. If you then navigate to the URL above, you will see the JSON output of the database model, Snippet.

AngularJS Client

As of April 11th, 2015, there is now a sample AngularJS client which pulls data from the Django sample API endpoint: http://127.0.0.1:8000/hackathon/snippets/. To test it, do the following:

  • Within the public/ directory, run python -m SimpleHTTPServer 80. You may need sudo on your respective Operating System.
  • Navigate to: http://localhost/#/snippets. Here you will see whatever content was stored within the database model, Snippet. If nothing shows up, go back to the RESTful endpoints step to populate your database with some Snippet objects.

Contributors

  • David Leonard
  • Eswari Swarna
  • Marco Quezada
  • Wan Kim Mok