Ask HN: I want to create a mobile web app with Django. Where to begin?
5 comments
Well beside reading de doc. and start by creating the "hello world" django app, you should take a look at these django packages:
https://www.djangopackages.com/grids/g/mobile/
then save the android developers site and read the design patterns section: http://developer.android.com/design/patterns/index.html
and finally follow this tutorial to jump start your mobile app: http://mobiforge.com/developing/story/build-a-mobile-and-des...
then save the android developers site and read the design patterns section: http://developer.android.com/design/patterns/index.html
and finally follow this tutorial to jump start your mobile app: http://mobiforge.com/developing/story/build-a-mobile-and-des...
There's two approaches here:
1) Traditional, have Django serve mobile optimized HTML via it's templates.
2) Use django to create an API, there's several tools to help with this, like piston, django-rest-framework, and tastypie.
1) Traditional, have Django serve mobile optimized HTML via it's templates.
2) Use django to create an API, there's several tools to help with this, like piston, django-rest-framework, and tastypie.
A project that I am currently working on uses a Django Piston API and a javascript framework on the client.
Piston: https://bitbucket.org/jespern/django-piston/wiki/Home
Piston: https://bitbucket.org/jespern/django-piston/wiki/Home
Right now I'm reading up on Django, what else should I read and familiarize myself with?
As a beginner it's tough sorting through all the data on Google and finding out what is write/wrong and wasting hours experimenting.