tasks-planner-app
tasks-planner-app copied to clipboard
Tasks Planner : A minimalist collaborative app for scheduling and managing your tasks with the team and getting notifications through discord.
Tasks Planner ✨
Overview
- Tasks planner is a minimalist collaborative app for planning and managing your tasks with the team and get notifications through discord.
- Once the task is created by the super admin (project manager), the application notifies affected users that a new task has been created using Discord Webhooks.
- This project is a web app developed with spring Boot (backend) & Angular (frontend).
- The workflow is managed by Git Actions CI/CD in order to automate deployment into AWS (AWS Elastic Beanstalk, RDS and AWS S3).
- new feature upcoming
Application live
- Super Admin account : nanodev/password123
- User acccount : miliariadnane/password123
Technologies
-
Backend:
- Spring Frameworks :
- Spring Boot
- Spring Data Jpa
- Spring MVC
- Spring Security / JWT (for new feature)
- Hibernate
- Docker
- JIB (build docker image tool)
- frontend-maven-plugin library (build angular frontend)
- Junit5 (unit / integration tests)
- Mockito
- Spring Frameworks :
-
Frontend:
- Angular
-
Database:
- Postgres
-
CI/CD:
- GitHub Actions
-
Cloud:
- AWS Elastic Beanstalk
- AWS RDS
-
Webhooks:
- Discord
Process Diagram
Upcoming features
- [x] Build & Deploy workflows using Git Actions.
- [x] Add users backend endpoints & UI.
- [x] Add security layer (Spring security + JWT).
- [x] Store user image in aws using s3 bucket.
- [x] Notify affected users when a task is created via discord.
- [x] Add monitoring dashboard (Spring Actuator).
- [x] Reset password and mailing service by aws.
- [ ] Notify admin via discord about deployment progress.
- [ ] Complete unit and integration tests.
ScreenShots
- Tasks List :
- Add new Task (Form) :
- Users List :
- Discord Notification :
- Reset user password :
- Monitoring Dashboard :
Some commands to run the application
Build image and push it to dockerhub (configure jib on pom.xml)
mvn clean install jib:build -Djib.to.image=miliariadnane/tasks-planner:v4 -Djib.to.auth.username=miliariadnane -Djib.to.auth.password=yourpassword
Create database via command line (create db first on AWS RDS)
- connect to the database
docker run -it --rm postgres:alpine psql -h aa33y2ufc6m1bo.cllttiutrcg0.us-east-1.rds.amazonaws.com -U nanodev -d postgres
- create database
create database tasksplanner;