Open
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Group Members:
1)Akash Madhumai - 2205102
2)Keshav Chalwadi - 2205123
3)Vishal Verma - 2205122
4)Vishal Lamani - 2205105
CONTACK BOOK APPLICATION
Description for Contact Book:
"Contact Book is a user-friendly and intuitive application designed to help users efficiently manage their contacts. With features such as adding, viewing, searching, updating, and deleting contacts, as well as the ability to export contact lists, Contact Book streamlines the process of organizing and accessing contact information. Whether you're a busy professional, a student, or anyone who needs to maintain a list of contacts, Contact Book provides a convenient solution for staying connected and organized."
How to set up it :
Install Django: If you haven't already, install Django using pip:
py -m pip install django
Create a Django Project: Use the Django command-line tool to create a new project:
django-admin startproject contact_book_
Create a Django App: Inside your project, create a new Django app for the contact book functionality:
python manage.py startapp contacts
Define Models: In the contacts app, define your contact model in the models.py file.
Register Models: Register your contact model in the admin.py file of the contacts app to make it accessible via the Django
admin interface.
Create Views and Templates: Create views and templates to handle adding, viewing, updating, and deleting contacts.
Define URLs: Define URL patterns in the urls.py file of the contacts app to map views to URLs.
Migrate Database: Run database migrations to create necessary database tables:
python manage.py makemigrations
python manage.py migrate
Run Server: Start the Django development server:
python manage.py runserver
This is how i have set up .
Thank You.