feat(v1.5.1): renomeação OpenSheets → OpenMonetis + multi-domínio

Renomeia o projeto em ~40 arquivos (package.json, manifests, layouts,
componentes, server actions, emails, Docker, docs, landing page).
Adiciona suporte a multi-domínio via PUBLIC_DOMAIN onde o domínio
público serve apenas a landing page sem botões de auth.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Felipe Coutinho
2026-02-16 17:16:50 +00:00
parent 98dd0f11e1
commit a1347aed28
40 changed files with 284 additions and 1368 deletions

View File

@@ -4,7 +4,7 @@ import { db } from "@/lib/db";
const APP_VERSION = "1.0.0";
/**
* Health check endpoint para Docker, monitoring e OpenSheets Companion
* Health check endpoint para Docker, monitoring e OpenMonetis Companion
* GET /api/health
*
* Retorna status 200 se a aplicação está saudável
@@ -20,7 +20,7 @@ export async function GET() {
return NextResponse.json(
{
status: "ok",
name: "OpenSheets",
name: "OpenMonetis",
version: APP_VERSION,
timestamp: new Date().toISOString(),
},
@@ -33,7 +33,7 @@ export async function GET() {
return NextResponse.json(
{
status: "error",
name: "OpenSheets",
name: "OpenMonetis",
version: APP_VERSION,
timestamp: new Date().toISOString(),
message: "Database connection failed",