Skip to content

Ricardo-VP/commit-history

Repository files navigation

Commit History App

Test the app

https://commit-history-ricardovaca.vercel.app/

Deployment

  • Frontend
    • Vercel
  • Backend
    • AWS Services: Lambda, API Gateway, ECR
    • Mangum
    • Docker

Technologies

  • Frontend

    • Language: TypeScript
    • Framework: NextJS 13
    • Styles: DaisyUI + TailwindCSS
    • Store library: Zustand
    • Fetching library: React Query
  • Backend

    • Language: Python
    • Framework: FastAPI

How to run the project

  • Requirements

  • Steps

    • Create a .env file in the root path:
      • It should have values like this:
        NEXT_PUBLIC_CLIENT_ID=Here paste your OAuth Client ID
        NEXT_PUBLIC_CLIENT_SECRET=Here paste your OAuth Client Secret
        NEXT_PUBLIC_REDIRECT_URI=https://localhost:3000/login
        NEXT_PUBLIC_BACKEND_URI=https://localhost:5000
      
    • Create a .env file in the backend folder:'
      • It should have values like this:
        CLIENT_ID=Here paste your OAuth Client ID
        CLIENT_SECRET=Here paste your OAuth Client Secret
        REDIRECT_URI=https://localhost:3000/login
      
    • Run the frontend:
      npm install &&
      npm run dev
      
    • Run the backend:
      cd backend &&
      python3 -m pip install -r requirements.txt &&
      python3 runner.py