Frontend repository for Logger, a full-stack accountability tracker that helps users stay on track with personal or group goals — from workouts to cooking at home. This repo contains the React + Vite frontend code.
Logger enables users to:
- Track activities individually or in groups.
- Get matched with accountability partners based on shared interests.
- Send and receive text notifications for check-ins.
- Keep logs of daily progress.
The frontend is built with React (Vite) and styled using Material UI. It communicates with the backend API (Java Spring Boot) via REST calls.
Frontend:
- React (Vite)
- Material UI
- React Router (HashRouter)
- React Context API
- Testing Library
Backend (for reference):
- Java 17
- Spring Boot
- Hibernate JPA
- PostgreSQL
Other Tools:
- Textbelt API (SMS notifications)
- Figma (design)
- ESLint + Prettier (linting & formatting)
- Static user authentication (signup, login).
- Profile creation with username, password, profile picture, and interests.
- Add friends via username.
- Create groups or join groups.
- Create logs for a specific topic.
- Find an accountability partner.
- Send text reminders to friends who haven't checkedin.
git clone https://github.com/ellenjin/tracker-frontend.git
cd tracker-frontendnpm installList of dependencies we used:
- @emotion/react
- @emotion/styled
- @mui/icons-material
- @mui/material
- axios
- date-fns
- react
- react-dom
- react-router-dom
Install these VS Code extensions:
Create .vscode/settings.json in the project root (not inside src/):
{
"eslint.experimental.useFlatConfig": true,
"eslint.validate": ["javascript", "javascriptreact"],
"editor.codeActionsOnSave": {
"source.fixAll": true,
"source.fixAll.eslint": true
},
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode"
}Note: You may see a yellow type warning for the last two lines; this can be safely ignored.
Inside the tracker-frontend folder:
VITE_BACKEND_URL=http://localhost:8080
# Or for deployed backend:
# VITE_BACKEND_URL=https://tracker-backend-r9ae.onrender.com/
npm run devFrontend (.env):
VITE_BACKEND_URL=http://localhost:8080
- CORS: Requests to the backend must come from:
http://localhost:5173(default Vite port), or- The deployed frontend (
ellenjin.github.io/tracker-frontend).
- The app is configured to use the deployed database by default — local DB setup is optional.
- For backend setup instructions, refer to the
tracker-backend repository.
This application was a collaborative effort built during Ada's Developer Academy Core Program. Logger was developed independently from the curriculum as a capstone project. Demo release coming soon!