You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- refactored all code, configuration, and documentation to rename the project from 'motorph' to 'sweldox'.
- includes package names, artifact IDs, Docker image names, database names, and references in the README and configuration files.
A comprehensive employee management and payroll system REST API built with Spring Boot. This project demonstrates backend development best practices and serves as preparation for software engineering internships.
10
-
11
9
## 🎯 Project Overview
12
10
13
-
MotorPH API is a full-featured Human Resources Information System (HRIS) that manages employee data, attendance tracking, and payroll processing. The system implements role-based access control, JWT authentication, and follows clean architecture principles.
11
+
Sweldox API is a full-featured Human Resources Information System (HRIS) that manages employee data, attendance tracking, and payroll processing. The system implements role-based access control, JWT authentication, and follows clean architecture principles.
14
12
15
13
## 🏗️ Architecture & Technology Stack
16
14
@@ -33,11 +31,10 @@ MotorPH API is a full-featured Human Resources Information System (HRIS) that ma
33
31
## 📁 Project Structure
34
32
35
33
```
36
-
motorph_api/
37
34
├── src/
38
35
│ ├── main/
39
-
│ │ ├── java/com/iodsky/motorph/
40
-
│ │ │ ├── MotorphApplication.java # Application entry point
36
+
│ │ ├── java/com/iodsky/sweldox/
37
+
│ │ │ ├── Application.java # Application entry point
@@ -322,7 +209,7 @@ JWT_EXPIRATION=86400000 # 24 hours in milliseconds
322
209
1.**Clone the repository**
323
210
```powershell
324
211
git clone <repository-url>
325
-
cd motorph_api
212
+
cd sweldox
326
213
```
327
214
328
215
2.**Create .env file**
@@ -386,7 +273,7 @@ The project includes two Docker Compose configurations:
386
273
387
274
### Build Docker Image
388
275
```powershell
389
-
docker build -t motorph-api .
276
+
docker build -t sweldox-api .
390
277
```
391
278
392
279
### Run with Docker Compose (Full Stack)
@@ -451,5 +338,3 @@ Run tests with:
451
338
### Phase 4: Documentation & Enhancement 🔮
452
339
-[ ] OpenAPI/Swagger documentation
453
340
---
454
-
455
-
**Note**: This project is actively being developed as part of backend development practice for internship preparation. The focus is on implementing industry-standard practices, clean code, and scalable architecture.
0 commit comments