Skip to content

SpaceTesla/CareerPilot

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CareerPilot

CareerPilot is a capstone project focused on building a modern career assistant platform. The repository is a monorepo with a FastAPI backend and room for a future Next.js frontend.

Tech stack

  • Backend: FastAPI (Python 3.13), LangChain + Google Gemini, Uvicorn
  • Tooling: uv for dependency management, ruff for linting
  • Frontend (planned): Next.js (TypeScript) + TailwindCSS

Repository structure

  • backend/: FastAPI service and supporting code
  • README.md: Project overview and quickstart (this file)
  • backend/README.md: Detailed backend docs (setup, env, APIs)

Quickstart (backend)

  1. Prerequisites
  • Python 3.13
  • Recommended: uv (pip install uv)
  1. Configure environment
  • Create backend/.env.local with at least the required API key (see backend/README.md for full details):
GOOGLE_API_KEY=your_google_api_key_here
  1. Install & run (using uv)
cd backend
uv sync
uv run uvicorn app.main:app --reload --host 0.0.0.0 --port 8000

Alternative (pip/venv):

cd backend
python -m venv .venv
.\.venv\Scripts\Activate.ps1
pip install -e .
uvicorn app.main:app --reload --host 0.0.0.0 --port 8000
  1. Explore the API
  • Swagger UI: http://localhost:8000/docs
  • ReDoc: http://localhost:8000/redoc

Useful links

  • Detailed backend documentation: backend/README.md
  • Issues/Roadmap: add as needed

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published