update app name

This commit is contained in:
Roberto Musso
2026-04-08 23:27:34 +02:00
parent 96c91e386d
commit cc94194fd1
8 changed files with 25 additions and 25 deletions

View File

@@ -1,4 +1,4 @@
# Adiuva Cloud API
# AdiuvAI Cloud API
**AI-powered project management backend with LLM orchestration and subscription billing.**
@@ -29,7 +29,7 @@ Built with FastAPI · Python 3.12 · PostgreSQL · LangChain · Stripe
## Overview
Adiuva Cloud API is the FastAPI backend that powers the **Adiuva Electron desktop app**. It provides LLM-powered chat orchestration, text embedding generation, and Stripe-based subscription billing across four tiers.
AdiuvAI Cloud API is the FastAPI backend that powers the **AdiuvAI Electron desktop app**. It provides LLM-powered chat orchestration, text embedding generation, and Stripe-based subscription billing across four tiers.
### Design Principles
@@ -134,7 +134,7 @@ Adiuva Cloud API is the FastAPI backend that powers the **Adiuva Electron deskto
```bash
# Clone the repository
git clone <repo-url> && cd adiuva-api
git clone <repo-url> && cd adiuvai-api
# Create a virtual environment
python -m venv .venv && source .venv/bin/activate
@@ -211,7 +211,7 @@ This starts PostgreSQL alongside the app.
```bash
# Database (uses the compose PostgreSQL)
DATABASE_URL=postgresql+asyncpg://postgres:postgres@db:5432/adiuva
DATABASE_URL=postgresql+asyncpg://postgres:postgres@db:5432/adiuvai
# Billing — leave empty to stub (no Stripe needed)
STRIPE_SECRET_KEY=
@@ -252,7 +252,7 @@ All variables are loaded from a `.env` file via Pydantic Settings. Source: `app/
| Variable | Type | Default | Description |
|---|---|---|---|
| `DATABASE_URL` | `str` | `postgresql+asyncpg://postgres:postgres@localhost:5432/adiuva` | Async SQLAlchemy connection string |
| `DATABASE_URL` | `str` | `postgresql+asyncpg://postgres:postgres@localhost:5432/adiuvai` | Async SQLAlchemy connection string |
| `JWT_SECRET` | `str` | `change-me-in-production` | HMAC secret for JWT signing |
| `JWT_ALGORITHM` | `str` | `HS256` | JWT signing algorithm |
| `JWT_ACCESS_TOKEN_EXPIRE_MINUTES` | `int` | `30` | Access token time-to-live |
@@ -526,7 +526,7 @@ pytest -v
## Project Structure
```
adiuva-api/
adiuvai-api/
├── alembic.ini # Alembic configuration
├── docker-compose.yml # Docker Compose (app + PostgreSQL)
├── Dockerfile # Multi-stage production build