A web application for managing job applications and tasks using Express.js, PostgreSQL, React, Redux, and React Query.
-
Job Management
- View, add, edit, delete jobs
- Update job status (applied, interviewed, etc.)
-
Task Management
- View, add, edit, delete tasks
- Mark tasks as completed
- Delay tasks with new time frames
-
Backend Integration
- Express.js server handling API endpoints
- PostgreSQL database for storing jobs and tasks
- RESTful API architecture for CRUD operations
-
Frontend
- React for dynamic UI components
- Redux for state management of cart and order
- React Query for efficient data fetching and caching
- React Router DOM: For handling routing in the application.
- React Hook Form: For managing form state.
- React Query: For data fetching, caching, synchronization, and background updating in the application.
- React Spinners: For loading indicators.
- Clone the repository
git clone https://github.com/boatman-27/tracker-v3 cd tracker-v3
- Change directory to client and scheduling-app and install dependncies
cd client/ npm install
- Start the client
npm run dev
- Return to original directory and change to server/ and install dependncies
cd .. cd serevr/ npm install
- Create the required tables (jobs, todos) on pgAdmin 4 or vercel(or any hosting service)
CREATE TABLE jobs ( id SERIAL PRIMARY KEY, job_title TEXT NOT NULL, job_desc TEXT NOT NULL, comp_name TEXT NOT NULL, comp_location TEXT NOT NULL, link TEXT NOT NULL, job_status TEXT DEFAULT 'pending', date_applied DATE NOT NULL ); CREATE TABLE todos ( id SERIAL PRIMARY KEY, task_title VARCHAR(255) NOT NULL, task_content TEXT NOT NULL, time_frame VARCHAR(50) NOT NULL, date_applied DATE NOT NULL, status VARCHAR(50) DEFAULT 'pending' );
- Create a .env and store the database credentials
only uses these with pgAdmin 4 PG_USER=your_pg_use PG_PASSWORD=your_pg_password PG_HOST=your_pg_host (localhost) PG_PORT=your_pg_port (5432) PG_DATABASE=your_pg_databasename only uses the link if database is hosted (like on vercel) POSTGRES_URL=your_postgres_connection_string
- Start the server
nodemon index.js
Contributions are welcome! Please fork the repository and create a pull request with your changes.
This project is licensed under the MIT License.