A Django-powered Bucketlist API with an AngularJS consumption client.
- Django: The web framework for perfectionists with deadlines (Django builds better web apps with less code).
- Django Rest Framwork: A powerful and flexible toolkit for building web APIs.
- Swagger: The world's most popular framework for documenting APIs.
- AngularJS: The go-to framework for building HTML enhanced web apps.
- Angular Material: AngularJS implementation for Google's material design specification.
- Google Web Fonts: Beautiful fonts from Google to complement your web app.
- Minor dependencies can be found in the requirements.txt file on the root folder.
-
If you wish to run your own build, first ensure you have python globally installed in your computer. If not, you can get python here.
-
After this, ensure you have installed virtualenv globally as well. If not, run this:
$ pip install virtualenv
-
Git clone this repo to your PC
$ git clone https://github.com/gitgik/djangular-bucketlist-app.git
-
-
Cd into your the cloned repo as such:
$ cd djangular-bucketlist-app
-
Create and fire up your virtual environment:
$ virtualenv env $ source env/bin/activate
-
Install the django dependencies needed to run the app:
$ pip install -r requirements.txt
-
Install the bower components for the angularJS client
$ bower install
-
-
To collect all your static files for django to easily access them from one folder, simply do:
$ python manage.py collectstatic --noinput
-
On your terminal, run the server using this one simple command:
$ python manage.py runserver
You can now access the bucketlist service on your browser by using
http://localhost:8000/
- Integrate Oauth for authenication.
- Use angular 2.0 on the consumption client.
- Add voice command functionality :-D