CI / build (push) Successful in 4m26s
Adds a Postgres-backed quotes domain (poems/quotes/favorites) exposed as five agent-native actions (list-quotes, get-random-quote, create-quote, toggle-favorite, list-favorites) callable from both chat and the React UI via useActionQuery/useActionMutation. Moves the primary UI from chat to a mobile-first Quotes/Favorites experience (chat moves to /chat), adds manual OpenTelemetry instrumentation exporting traces/metrics/logs over OTLP, and wires a local Docker Postgres for shared state.
12 lines
346 B
TypeScript
12 lines
346 B
TypeScript
const rawAppName = "verse-quote-app";
|
|
const rawAppTitle = "Verse";
|
|
|
|
const APP_NAME_PLACEHOLDER = "{" + "{APP_NAME}}";
|
|
const APP_TITLE_PLACEHOLDER = "{" + "{APP_TITLE}}";
|
|
|
|
export const APP_NAME =
|
|
rawAppName === APP_NAME_PLACEHOLDER ? "chat" : rawAppName;
|
|
|
|
export const APP_TITLE =
|
|
rawAppTitle === APP_TITLE_PLACEHOLDER ? "Chat" : rawAppTitle;
|