https://github.com/codehex16/mvp
https://github.com/codehex16/mvp
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/codehex16/mvp
- Owner: CodeHex16
- Created: 2025-03-14T09:39:52.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-05-21T11:00:32.000Z (about 1 year ago)
- Last Synced: 2025-05-21T12:21:38.393Z (about 1 year ago)
- Size: 61.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# MVP
Minimum Viable Product per il capitolato C7 di Ingegneria del Software (aa. 2024/2025) dell'Università di Padova.
| Project | Coverage Status |
|---------------|-----------------------------------------------------------------------------------------------------|
| Suppl-AI | [](https://coveralls.io/github/CodeHex16/Suppl-AI) |
| Database-API | [](https://coveralls.io/github/CodeHex16/Database-API) |
| LLM-API | [](https://coveralls.io/github/CodeHex16/LLM-API) |
## How to clone the repo with submodules
```bash
git clone --recurse-submodules https://github.com/CodeHex16/MVP.git
```
## How to run the project
First you need to ```cd``` into the project folder in order to create your ```.env``` file, so:
- ```cd MVP```
- ```cp .env.example .env```
Then you need to create the docker shared network:
```bash
docker network create suppl-ai-shared-network
```
And finally you can build and run the project:
```bash
docker compose up -d --build
```
## How to stop the project
```bash
docker compose down
```
## How to update project with the submodules
```bash
git pull --recurse-submodules
```