https://github.com/codehex16/proof-of-concept
https://github.com/codehex16/proof-of-concept
Last synced: 6 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/codehex16/proof-of-concept
- Owner: CodeHex16
- Created: 2024-12-11T15:06:44.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-03-11T17:17:46.000Z (over 1 year ago)
- Last Synced: 2025-03-11T18:26:55.435Z (over 1 year ago)
- Homepage: https://codehex16.github.io
- Size: 3.47 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Proof-of-Concept
## Utilizzo
1. Clona il repository con i suoi sottomoduli
```bash
git clone https://github.com/CodeHex16/Proof-of-Concept.git --recurse-submodules
```
1. Crea il file `.env` per Database-API e LLM-API
- in `LLM-API/.env`
```dosini
# LLM-API
OPENAI_API_KEY=
```
- in `Database-API/.env`
```dosini
# Database-API
MONGODB_URL=mongodb://:@mongo-db:27017
SECRET_KEY_JWT=
```
1. Esegui il seguente comando per avviare i servizi
```bash
docker compose up -d
```
1. Accedi ai servizi ai seguenti URL
- Suppl-AI Frontend: [http://localhost:3000](http://localhost:3000)
- Database-API: [http://localhost:8000](http://localhost:8000)
- docs: [http://localhost:8000/docs](http://localhost:8000/docs)
- LLM-API: [http://localhost:8001](http://localhost:8001)
- docs: [http://localhost:8001/docs](http://localhost:8001/docs)
- Mongo Express: [http://localhost:8081](http://localhost:8081)
1. Per fermare i servizi, esegui il seguente comando
```bash
docker compose down
```
## Interfaccia


