Skip to content

Latest commit

 

History

History
26 lines (14 loc) · 473 Bytes

README.md

File metadata and controls

26 lines (14 loc) · 473 Bytes

Registration-Form-Using-Django

Registration Page in vue and connected to Backend using Django (Sqlite3) and its unit tests

Django Installation

pip install django

Creating Django Project

django-admin startproject mysite

Creating Django App

python manage.py startapp polls

Running app

python manage.py runserver

Running unit tests for Django tests

coverage run manage.py test

Cheking coverage report

coverage report -m