Initialize a Git repository for the project on GitHub. Create a professional README.md.
Build a FastAPI application with two endpoints:
POST /analyze: Accepts a raw text resume and returns extracted entities (e.g., skills, contact info).
GET /health: A simple health check endpoint.
Step 3 (Testing)
Write a suite of Pytest unit tests for the analysis logic and API endpoints.
Connect the API to a PostgreSQL database. Store every analyzed resume and its results in a table
Write a Dockerfile for the FastAPI application.