Skip to content

Latest commit

 

History

History
39 lines (29 loc) · 792 Bytes

File metadata and controls

39 lines (29 loc) · 792 Bytes

ApplyQuest

A gamified job search tracking application to keep you motivated during your job hunt.

Project Structure

  • /frontend - React + TypeScript frontend
  • /backend - Python FastAPI backend

Setup

Frontend

cd frontend
npm install
npm start

Backend

cd backend
python -m venv venv
source venv/bin/activate  # or venv\Scripts\activate on Windows
pip install -r requirements.txt
uvicorn app.main:app --reload

Features

  • Gamified job tracking with points, levels, and streaks
  • Kanban board for application management
  • Analytics and visualizations
  • Network contact management
  • Germany-specific job search fields

Tech Stack

Frontend: React, TypeScript, Tailwind CSS, Recharts Backend: Python, FastAPI, PostgreSQL, SQLAlchemy