A modular collection of lightweight APIs designed to simplify and accelerate web application development.
- SMS
- Payment Gateway Integration with Webhook
- Email Sending
- Identity Verification
- OCR
- In project files, rename the file from .env.example to .env
- Open terminal then navigate to project path
cd <project_path>
- Install virtual environment (if not yet installed)
python -m venv .venv
- Activate virtual environment
.venv\Scripts\activate
- Update pip version
python -m pip install --upgrade pip
- Install dependencies
pip install -r requirements.txt
- Run the app
uvicorn main:app --reload --host 0.0.0.0
- You can look for the APIs in the browser with URL <your_ip_address>:8000/docs