A FastAPI service that handles job post data.
- Install dependencies:
pip install -r requirements.txtTo run the service:
uvicorn main:app --reloadThe service will start on http://localhost:8000
Accepts any JSON data in the request body and prints it to the console.
Example request:
curl -X POST http://localhost:8000/job_post \
-H "Content-Type: application/json" \
-d '{"title": "Software Engineer", "company": "Example Corp"}'