A Contact List App using Django Framework.
- This
Contact List App
is developed using python where you can view it in web. - You can perform CRUD operations.
- Add Contact.
- Edit Contact.
- Save Contact.
- Delete Contact.
- Search Functionality.
- Create a virtual environment
py -m venv env
- Activate virtual environment
.\env\Scripts\activate
- Install all the dependencies.
pip install -r requirements.txt
- This will convert model class into sql statements.
python manage.py makemigrations
- To execute sql statements generated by make migrations. This will create the tables in the Database.
python manage.py migrate
- Create an admin user for admin panel.
python manage.py createsuperuser.
Preview!