This project demonstrate on full stack app development with Frontend in React JS (Typescript), Redux, Backend in NestJS with Graphql and Postgres as DB.
We shall practice atomic design model with properly arranging and aligning our components to atoms, molecules and organisms. Moreover, we can focus and emphasize on practicing writing clean code.
We shall create task management page where user is able to create task, edit task and delete task. We shall use redux for state management and Material UI for styles.
We would also be having backend in NestJS using graphql and Postgres as our DB for data storage.
- Create a task
- Give the task a name during the creation
- Select task type - Story or Bug
- Enter how much time they spent on task
- Enter dates on which they were working on a task, if empty - the current date should be pre-filled
- Add 0 to 3 labels/tags
- See the list of previously created tasks
- export a list of created tasks as JSON file
- import a list of tasks as JSON file
- Edit a task
- edit any field of the task
- delete task
- See the dashboard with insights about tasks
- see the bar chart for tasks
Once forked / cloned, spin up Postgres DB docker container;
docker-compose up -d
Now, install dependencies for frontend and backend apps by moving to respective folders and run below command.
npm i
Once installation is completed. Run below commands for Frontend and Backend.
Frontend
npm run start
Backend
npm run start:dev
You can run below commands for testing Frontend and Backend.
npm run test
OR
npm run test:watch