- Service that provides apis to scan KMA student forms
- Currently, this service just works with these following applications:
continue-study-application
drop-out-school-application
reissued-student-card-application
reissued-student-health-insurrance-application
- Create virtual environment
python3 -m venv venv
source venv/bin/activate #linux distributions
venv\Scripts\activate #window
deactivate #deactivate virtual environment
- Install dependencies
pip install -r requirements.txt
- Run server
uvicorn app.main:app --reload
- Access
- API document: http://127.0.0.1:8000/docs
- Health check server: http://127.0.0.1:8000/api/health
- FRONTEND_HOST=http://localhost:3000
- ENVIRONMENT=local
- BACKEND_CORS_ORIGINS=http://localhost:4000,http://localhost:5173