A modern, secure, and scalable task management system.
Built with Spring Boot & Next.js. Handles real-world team collaboration, security, and performance.
- 🚩 Features
- 🛠️ Tech Stack
- ⚡ Quick Start
- ⚙️ Configuration
- 📖 API Documentation
- 📂 Project Structure
- 🙌 Contribution
- 📝 License
- 👤 User Management
- Registration & login
- Profile management
- Role-based access (Admin / Project Manager / Team Lead / Member / Viewer)
- Self-service password change & updates
- Admin user creation, deactivation, deletion
- ✅ Task Management
- Create, update, delete, and mark tasks as complete
- Assign tasks to users
- 📁 Project Management
- Create, update, delete projects
- 👫 Team Management
- Create, update, delete teams & assign users
- 🔒 Security
- JWT authentication, BCrypt hashed passwords, CORS for frontend integration
- 📑 API Docs
- Swagger (OpenAPI) for easy API exploration
- 📈 Performance
- Handles up to 30 requests per second (cloud-deployed, scalable)
| Layer | Technologies |
|---|---|
| Backend | |
| Frontend | |
| DevOps | Docker, AWS EC2, Maven |
| APIs | RESTful, documented via Swagger/OpenAPI |
-
Clone the repository git clone https://github.com/Swastik2740S cd smarttask
-
Set up the database
- Install PostgreSQL
- Create a database named
smarttask
- Configure the application
- Update
application.propertiesorapplication.ymlwith your database credentials - Example:
spring.datasource.url=jdbc:postgresql://localhost:5432/smarttask spring.datasource.username=postgres spring.datasource.password=yourpassword
- Build and run the application
- mvn clean install
- mvn spring-boot:run
- Access the application
- API: http://localhost:8080
- Swagger UI: http://localhost:8080/swagger-ui/index.html
-
JWT Secret: Set in
application.properties: jwt.secret=your-secret-key -
CORS: Configured in
SecurityConfigto allow your frontend origin (e.g.,http://localhost:3000) -
Date Format: ISO 8601 or custom date formats via
@JsonFormatannotation in DTOs
SmartTask provides comprehensive API documentation using Swagger (OpenAPI).
Access the Swagger UI at:
http://localhost:8080/swagger-ui/index.html
smarttask/
├── src/
│ ├── main/
│ │ ├── java/
│ │ │ └── com/smarttask/
│ │ │ ├── config/
│ │ │ ├── controller/
│ │ │ ├── dto/
│ │ │ ├── enums/
│ │ │ ├── exception/
│ │ │ ├── model/
│ │ │ ├── repository/
│ │ │ ├── security/
│ │ │ └── service/
│ │ └── resources/
│ │ └── application.properties
├── README.md
└── pom.xml
This project is licensed under the MIT License.
MIT License
Copyright (c) 2025 Swastik Verma
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Thank you for using SmartTask!