ESC Project Tracker (tracker.intania.org) is a project and document management system for coordination between the ESC secretariat and project owners under the Engineering Student Committee.
This repository contains the frontend application for browsing projects, managing documents, tracking filing activity, and using the ESC workflow through a web interface.
- Create a local environment file.
Copy-Item .env.example .env.local- Set the backend API base URL in
.env.local.
NEXT_PUBLIC_API_BASE_URL=http://localhost:8080- Install dependencies and start the development server.
bun install
bun run dev- Open the app in your browser.
http://localhost:3000
Note:
- The backend must be running before using the frontend locally.
- In production,
NEXT_PUBLIC_API_BASE_URLmust point to the deployed backend origin.