/django-angular-auth

A sample django angular app to showcase token authentication

Primary LanguageApacheConfMIT LicenseMIT

Token Authentication with Django

Tutorial here

First Run Instructions

Clone the repository: git clone https://github.com/nknj/django-angular-auth.git

Run it using the following commands:

  • backend
cd backend
mkvirtualenv your_virtual_env_name
pip install -r requirements.txt
chmod +x manage.py
./manage.py syncdb
./manage.py runserver 0.0.0.0:5000
  • frontend
cd frontend
npm install
bower install
grunt serve