https://github.com/an4xdev/sprintforge
Application to manage software projects implemented in microservices on different programming platforms
https://github.com/an4xdev/sprintforge
asp-net-core docker docker-compose expressjs golang jwt-authentication laravel microservice minio-server planning postgresql rabbitmq redis-cache spring-boot sprint vue
Last synced: 7 months ago
JSON representation
Application to manage software projects implemented in microservices on different programming platforms
- Host: GitHub
- URL: https://github.com/an4xdev/sprintforge
- Owner: an4xdev
- License: mit
- Created: 2025-03-07T15:48:25.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2025-09-01T09:48:39.000Z (7 months ago)
- Last Synced: 2025-09-01T11:51:01.303Z (7 months ago)
- Topics: asp-net-core, docker, docker-compose, expressjs, golang, jwt-authentication, laravel, microservice, minio-server, planning, postgresql, rabbitmq, redis-cache, spring-boot, sprint, vue
- Language: Vue
- Homepage:
- Size: 5.73 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README

Software project management system implemented in microservices on different programming platforms.
## Used technologies
- ASP.NET Core (MIT/Apache 2.0)
- Spring Boot (Apache 2.0)
- FastAPI (MIT)
- Express.js (MIT)
- Laravel (MIT)
- Vue.js (MIT)
- PostgreSQL (PostgreSQL License)
- Redis (BSD 3-Clause)
- RabbitMQ (MPL 2.0)
- MinIO (AGPL 3.0)
## Status
> [!WARNING]
> This project is in development.
## Quick start
```console
docker-compose up --build -d
```
Api Gateway OpenAPI documentation is available at [here](https://localhost/scalar/v1).
## Development Tips
### HTTPS Api Gateway
Follow [Microsoft documentation](https://learn.microsoft.com/en-us/aspnet/core/security/docker-compose-https?view=aspnetcore-9.0)
### Automatic migrations
Migrations are managed by `DatabaseService` which is using objects from `SharedObjects` project. It is checking for the latest migration and applying it to the database.
### Automatic model generation from database
> NOTE
> For Spring project I used Intellij IDEA option from Database tab.
> NOTE
> For FastAPI project I hand wrote models based on the database schema. But got inspired by models that were generated via [sqlacodegen](https://pypi.org/project/sqlacodegen/).
#### Requirements
- Laravel: [Reliese laravel](https://github.com/reliese/laravel)
- Express: [sequelize-auto](https://github.com/sequelize/sequelize-auto) with PostgreSQL dialect
#### Usage
To automatically generate models from database, you can use the following command:
```bash
# For Windows
models.bat
# For Linux !!! NOT TESTED !!!
chmod +x models.sh
./models.sh
```
## Signing Token for JWT
To generate a signing token for JWT, you can use the following command (or leave my token in the `.env` file):
```bash
cd key_generator
python main.py
```
Modify the `.env` file with newly generated token.
## Licenses
Third party libraries are licensed under their respective licenses see third-party-licenses directory for details.