From 20de65ad0187bf13c3a6d1cb463ab95e38dd5267 Mon Sep 17 00:00:00 2001 From: zwitschi Date: Wed, 29 Apr 2026 13:02:31 +0200 Subject: [PATCH] Update project name to "All You Can GET AI" across documentation and configuration files; specify versions for bcrypt and passlib in requirements --- docker-compose.coolify.yml | 2 +- docker-compose.yml | 2 +- docs/1-introduction-and-goals.md | 2 +- docs/ARCHITECTURE.md | 2 +- docs/deployment/coolify.md | 22 +++++++++++----------- docs/deployment/docker-compose.md | 2 +- requirements.txt | 4 ++-- 7 files changed, 18 insertions(+), 18 deletions(-) diff --git a/docker-compose.coolify.yml b/docker-compose.coolify.yml index 70d294c..2974b4e 100644 --- a/docker-compose.coolify.yml +++ b/docker-compose.coolify.yml @@ -7,7 +7,7 @@ services: - OPENROUTER_API_KEY=${OPENROUTER_API_KEY} - JWT_SECRET=${JWT_SECRET} - APP_URL=${APP_URL:-https://ai.allucanget.biz} - - APP_NAME=${APP_NAME:-AI Allucanget} + - APP_NAME=${APP_NAME:-All You Can GET AI} - CORS_ORIGINS=${CORS_ORIGINS:-https://ai.allucanget.biz} volumes: - app-data:/app/data diff --git a/docker-compose.yml b/docker-compose.yml index 2b1416e..74e954d 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -10,7 +10,7 @@ services: - OPENROUTER_API_KEY=${OPENROUTER_API_KEY} - JWT_SECRET=${JWT_SECRET} - APP_URL=${APP_URL:-http://localhost} - - APP_NAME=${APP_NAME:-AI Allucanget} + - APP_NAME=${APP_NAME:-All You Can GET AI} - CORS_ORIGINS=${CORS_ORIGINS:-http://localhost:12016} volumes: - ./data:/app/data diff --git a/docs/1-introduction-and-goals.md b/docs/1-introduction-and-goals.md index 6c56a0a..424eeeb 100644 --- a/docs/1-introduction-and-goals.md +++ b/docs/1-introduction-and-goals.md @@ -4,7 +4,7 @@ Describes the relevant requirements and the driving forces that software archite ## Requirements Overview -**Project name**: AI Allucanget Biz +**Project name**: All You Can GET AI Biz **Purpose**: Provide AI‑powered text, image, and video generation services via a web application. Users can choose between different AI models for: diff --git a/docs/ARCHITECTURE.md b/docs/ARCHITECTURE.md index 44c7eab..be47d2c 100644 --- a/docs/ARCHITECTURE.md +++ b/docs/ARCHITECTURE.md @@ -1,6 +1,6 @@ # Architecture Documentation -This file is the entry point for the architecture documentation of **AI Allucanget Biz**. +This file is the entry point for the architecture documentation of **All You Can GET AI Biz**. The documentation follows the [arc42 template](https://arc42.org/overview) and is split into 12 section files, each covering a specific aspect of the architecture. Read the sections in order for a full picture, or jump directly to the section most relevant to you. diff --git a/docs/deployment/coolify.md b/docs/deployment/coolify.md index 3cd1a8f..df3a2ef 100644 --- a/docs/deployment/coolify.md +++ b/docs/deployment/coolify.md @@ -69,7 +69,7 @@ Add these in Coolify before first deploy: | `OPENROUTER_API_KEY` | `backend` | `sk-or-v1-...` | | `JWT_SECRET` | `backend` | `openssl rand -hex 32` | | `APP_URL` | `backend` | `https://ai.allucanget.biz` | -| `APP_NAME` | `backend` | `AI Allucanget` | +| `APP_NAME` | `backend` | `All You Can GET AI` | | `CORS_ORIGINS` | `backend` | `https://ai.allucanget.biz` | | `FLASK_SECRET_KEY` | `frontend` | `openssl rand -hex 32` | | `BACKEND_URL` | `frontend` | `http://backend:12015` | @@ -123,7 +123,7 @@ Add these as **Runtime** environment variables in Coolify: | `OPENROUTER_API_KEY` | OpenRouter API key for AI generation | `sk-or-v1-...` | | `JWT_SECRET` | Secret key for JWT token signing | Generate with `openssl rand -hex 32` | | `APP_URL` | Public URL of the backend | `https://api.ai.allucanget.biz` | -| `APP_NAME` | Application name | `AI Allucanget` | +| `APP_NAME` | Application name | `All You Can GET AI` | | `CORS_ORIGINS` | Comma-separated allowed origins | `https://ai.allucanget.biz` | ## Step 2: Create Frontend Service @@ -258,15 +258,15 @@ If you want to persist DuckDB data: All required environment variables: -| Variable | Service | Required | -| -------------------- | -------- | -------------------------------- | -| `OPENROUTER_API_KEY` | Backend | Yes | -| `JWT_SECRET` | Backend | Yes | -| `APP_URL` | Backend | Yes | -| `APP_NAME` | Backend | No (defaults to "AI Allucanget") | -| `CORS_ORIGINS` | Backend | Yes | -| `FLASK_SECRET_KEY` | Frontend | Yes | -| `BACKEND_URL` | Frontend | Yes | +| Variable | Service | Required | +| -------------------- | -------- | ------------------------------------- | +| `OPENROUTER_API_KEY` | Backend | Yes | +| `JWT_SECRET` | Backend | Yes | +| `APP_URL` | Backend | Yes | +| `APP_NAME` | Backend | No (defaults to "All You Can GET AI") | +| `CORS_ORIGINS` | Backend | Yes | +| `FLASK_SECRET_KEY` | Frontend | Yes | +| `BACKEND_URL` | Frontend | Yes | ## Deployment Checklist diff --git a/docs/deployment/docker-compose.md b/docs/deployment/docker-compose.md index 6f77af2..bc86126 100644 --- a/docs/deployment/docker-compose.md +++ b/docs/deployment/docker-compose.md @@ -80,7 +80,7 @@ The `.env` file in the project root is automatically loaded by Docker Compose. R | `BACKEND_URL` | Internal URL for frontend to reach backend | `http://backend:12015` (Docker) or `http://localhost:12015` (local dev) | | `CORS_ORIGINS` | Allowed CORS origins for backend | `http://localhost:12016` (local) or `https://ai.allucanget.biz` (production) | | `APP_URL` | Public URL of the backend | `http://localhost` or `https://ai.allucanget.biz` | -| `APP_NAME` | Application name | `AI Allucanget` | +| `APP_NAME` | Application name | `All You Can GET AI` | ### Volume Mounts diff --git a/requirements.txt b/requirements.txt index eee3615..428bddc 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ anyio -bcrypt +bcrypt==4.0.1 blinker certifi cffi @@ -20,7 +20,7 @@ itsdangerous Jinja2 MarkupSafe packaging -passlib +passlib==1.7.4 pluggy pyasn1 pycparser