Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hmzelidrissi/dev-sync
Task management system using Jakarta EE & Docker + jenkins pipeline to push the image to dockerhub
https://github.com/hmzelidrissi/dev-sync
docker docker-compose glassfish jakarta java jee jenkins jpa-hibernate jsp-servlet junit junit5 servlet
Last synced: about 2 months ago
JSON representation
Task management system using Jakarta EE & Docker + jenkins pipeline to push the image to dockerhub
- Host: GitHub
- URL: https://github.com/hmzelidrissi/dev-sync
- Owner: HMZElidrissi
- Created: 2024-09-27T15:45:46.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-10-21T12:07:47.000Z (4 months ago)
- Last Synced: 2024-11-01T23:07:58.402Z (3 months ago)
- Topics: docker, docker-compose, glassfish, jakarta, java, jee, jenkins, jpa-hibernate, jsp-servlet, junit, junit5, servlet
- Language: Java
- Homepage:
- Size: 93.8 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# DevSync
DevSync is a collaborative task management system designed for development teams. It provides features for creating,
assigning, and tracking tasks, with a unique token system for task modifications and deletions.## Version 1.1.0
- User Management: Create, view, edit, and delete user accounts
- Task Management:
- Create tasks with multiple tags
- Assign tasks to users
- Mark tasks as completed
- View task details and lists
- Task Constraints:
- Tasks cannot be created in the past
- Tasks must have at least 2 tags
- Tasks cannot be scheduled more than 3 days in advance
- Tasks must be marked as completed before their due date
- Token System:
- Users have 2 tokens per day for replacing manager-assigned tasks
- Users have 1 token per month for deleting tasks
- Deleting self-created tasks doesn't use tokens## Version 1.2.0
1. Enhanced Manager Task Replacement
- Managers must assign replaced tasks to another user
- Replaced tasks become immutable (cannot be modified or deleted with tokens)2. Dynamic Token System
- Token balance doubles if a manager doesn't respond to task change requests within 12 hours3. Automated Task Management
- System automatically marks overdue tasks as incomplete every 24 hours4. Manager Overview Dashboard
- View all tasks assigned to employees
- Task completion percentage filterable by tags, week, month, and year
- Track token usage per user### Technologies
- Jakarta EE 9+
- Java 11+
- TomEE 9+
- Maven
- Docker
- PostgreSQL### Setup and Installation
1. Clone the repository:
```
git clone https://github.com/HMZElidrissi/dev-sync.git
```2. Navigate to the project directory:
```
cd dev-sync
```3. Build the project:
```
mvn clean package
```4. Start the project with Docker:
```
docker-compose up --build
```5. Access the application at `http://localhost:8084/dev-sync`
6. To deploy the build artifact to the local Maven repository:
```
mvn install:install-file -Dfile= -DgroupId= -DartifactId= -Dversion= -Dpackaging=war
```
In this case:
```
mvn install:install-file -Dfile=target/dev-sync.war -DgroupId=ma.hmzelidrissi -DartifactId=dev-sync -Dversion=1.1.0 -Dpackaging=war
```
7. To deploy the build artifact to a remote Maven repository:
- Add the following to the `pom.xml` file:
```
remote-repository
Remote Repository Name
https://your-repository-url.com/releases
remote-repository
Remote Snapshot Repository Name
https://your-repository-url.com/snapshots
```
- Configure Maven settings
In your `~/.m2/settings.xml` file (create it if it doesn't exist), add:
```
remote-repository
your-username
your-password
```
- Build the project:
```
mvn clean package
```
- Deploy the artifact:
```
mvn deploy
```