This is a Django project that demonstrates [brief description of your project].
- add product
- delete product
- update product
- view list and detail product
- Clone the repository:
git clone https://github.com/yourusername/your-repo-name.git
- Navigate to the project directory:
cd your-repo-name - Create a virtual environment:
python -m venv env
- Activate the virtual environment:
- On Windows:
.\env\Scripts\activate
- On macOS and Linux:
source env/bin/activate
- On Windows:
- Install the dependencies:
pip install -r requirements.txt
- Apply the migrations:
python manage.py migrate
- Run the development server:
python manage.py runserver