API Mong is a standalone web application built with Python (Django) Framework. These application is designed to handle various API requests including GET, POST, PUT, and DELETE.
git clone https://github.com/EmmaUmeh/API-MONG.git
cd API-Mong
Step 2: Set Up Virtual Environment
Create and activate a virtual environment:
sh
Copy code
python -m venv api_mong_env
api_mong_env\Scripts\activate # For Windows
# OR
source api_mong_env/bin/activate # For macOS/Linux
Step 3: Install Dependencies
Install the required dependencies using the provided requirements.txt file:
sh
Copy code
pip install -r requirements.txt
Step 4: Run Migrations
Apply the database migrations:
sh
Copy code
python manage.py migrate
Step 5: Start the Development Server
Start the Django development server:
sh
Copy code
python manage.py runserver