- Rohit Banala
- Manikanta Ankam
- Srinithya Gunda
- Siddarth Singh
Follow the steps below to clone and run the project locally:
# Clone the repository
git clone https://github.com/AnkamChinnaManikanta/CodeBlooded-Odoo-Jul-12.git
# Navigate into the project directory
cd CodeBlooded-Odoo-Jul-12
# Create a virtual environment
python3 -m venv venv
# Activate the virtual environment
source venv/bin/activate # On macOS/Linux
# OR
venv\Scripts\activate # On Windows
# Install dependencies
pip install -r requirements.txt
# Migrate Tables
python3 manage.py migrate
# Run the Django development server
python manage.py runserver
# Run the frontend
# Go to frontend folder in CodeBlooded-Odoo-Jul-12
cd CodeBlooded-Odoo-Jul-12/frontend
# Install dependencies
npm install
# Run the server
npm run dev