Skip to content

Latest commit

 

History

History
27 lines (21 loc) · 507 Bytes

README.md

File metadata and controls

27 lines (21 loc) · 507 Bytes

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