Loading repository data…
Loading repository data…
SheriNawaz / repository
A full-stack web app for tracking job applications developed using ExpressJS, NodeJS, Postgresql and Prisma for the backend and React Typescript and TailwindCSS for the frontend
A transparent discovery signal based on current public GitHub metadata.
This score does not audit code, security, maintainers, documentation quality, or suitability. Verify the repository and its current documentation before adoption.
A full-stack web app for tracking job applications. Register an account, log your applications, update their status as you progress through the hiring process, and filter your list to stay organised.
Live site: https://application-tracker-peach.vercel.app
Frontend
Backend
@prisma/adapter-pg)application-tracker/
├── frontend/ # Vite + React app
│ ├── src/
│ │ ├── api/ # Axios instance
│ │ ├── components/ # Page components
│ │ └── context/ # Auth context
│ └── vercel.json # SPA routing config for Vercel
└── backend/ # Express API
├── controllers/ # Route handlers
├── middleware/ # Auth middleware
├── prisma/ # Schema and Prisma client
└── routes/ # Express routers
cd backend
npm install
Create a .env file in the backend/ folder:
DB_URL=postgresql://postgres:yourpassword@localhost:5432/applicationtracker
JWT_SECRET=your_secret_here
NODE_ENV=development
Generate the Prisma client and push the schema to your database:
npx prisma generate
npx prisma db push
Start the server:
npm start
Backend runs on .
http://localhost:3000cd frontend
npm install
npm run dev
Frontend runs on http://localhost:5173. The Vite proxy forwards /api requests to the backend automatically — no extra config needed.
| Method | Endpoint | Description |
|---|---|---|
| POST | /api/auth/register | Register a new user |
| POST | /api/auth/login | Log in |
| POST | /api/auth/logout | Log out |
| GET | /api/auth/me | Get current user |
| Method | Endpoint | Description |
|---|---|---|
| GET | /api/application | Get all applications for logged-in user |
| POST | /api/application | Create a new application |
| PUT | /api/application/:id | Update an application |
| DELETE | /api/application/:id | Delete an application |
The app is deployed with the frontend on Vercel and the backend + database on Railway.
Railway (backend)
| Variable | Description |
|---|---|
DB_URL | PostgreSQL connection string |
JWT_SECRET | Secret key for signing JWTs |
NODE_ENV | Set to production |
CLIENT_ORIGIN | Your Vercel frontend URL |
Vercel (frontend)
| Variable | Description |
|---|---|
VITE_API_URL | Your Railway backend URL |