Skip to content

This is a CRUD (Create, Read, Update, and Delete) project in Django. It is designed to demonstrate the basic functionality of a web application using Django framework. In this project, users can perform basic CRUD operations on a database of items.

Notifications You must be signed in to change notification settings

VarunGit2022/CRUD-Project

Repository files navigation

Introduction:

This is a CRUD (Create, Read, Update, and Delete) project in Django. It is designed to demonstrate the basic functionality of a web application using Django framework. In this project, users can perform basic CRUD operations on a database of items.

This is how our application does look like:

image

These paths will help you in accessing the different panels and pages of the application like, /addandshow/ and /admin/

image

Getting Started:

To run this project on your local machine, follow the instructions below:

  1. Clone the project to your local machine using the command: git clone https://github.com/yourusername/crud-django.git

  2. Navigate to the project directory: cd crud-django

  3. Create a virtual environment: python -m venv env

  4. Activate the virtual environment: source env/bin/activate

  5. Install the required packages: pip install -r requirements.txt

  6. Create a local database by running the following commands: python manage.py makemigrations, python manage.py migrate(just after the makemigrationns command)

  7. Create a superuser: python manage.py createsuperuser

  8. Start the development server: python manage.py runserver

  9. Access the application by navigating to http://localhost:8000 in your web browser.

  10. Functionality:

This application allows users to:

  1. Create items by providing a title and description.
  2. View a list of all items in the database.
  3. Update an existing item's title or description.
  4. Delete an existing item.

Technology Stack:

  1. Python
  2. Django
  3. HTML
  4. CSS
  5. Bootstrap

Conclusion: This is a simple CRUD project that can be used as a starting point for a larger web application using the Django framework. It demonstrates basic functionality and can be expanded upon to include more features and functionality.

About

This is a CRUD (Create, Read, Update, and Delete) project in Django. It is designed to demonstrate the basic functionality of a web application using Django framework. In this project, users can perform basic CRUD operations on a database of items.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published