Django Rest Framework based Vendor Management System with Performance Metrics
- Clone the repository
git clone https://www.github.com/jiisanda/vemas.git
- Create a virtual environment
python3 -m venv venv
activate the virtual environment
source venv/bin/activate
- Install the requirements
pip install -r requirements.txt
- Setup environment variables
Sample .env file named .env.example is provided in the repository. Rename the file to .env.
- Run migrations and migrate
python manage.py makemigrations
python manage.py migrate
- Runserver
python manage.py runserver
- Import the postman collection to test the API
Download the postman collection from docs/VEMAS.postman_collection.json).
Refer to the Problem Statement for more details.
Refer to the API Documentation for more details.