diff --git a/webui/.env.example b/webui/.env.example new file mode 100644 index 0000000..7a550fe --- /dev/null +++ b/webui/.env.example @@ -0,0 +1,9 @@ +# GEMINI_API_KEY: Required for Gemini AI API calls. +# AI Studio automatically injects this at runtime from user secrets. +# Users configure this via the Secrets panel in the AI Studio UI. +GEMINI_API_KEY="MY_GEMINI_API_KEY" + +# APP_URL: The URL where this applet is hosted. +# AI Studio automatically injects this at runtime with the Cloud Run service URL. +# Used for self-referential links, OAuth callbacks, and API endpoints. +APP_URL="MY_APP_URL" diff --git a/webui/.gitignore b/webui/.gitignore index b947077..5a86d2a 100644 --- a/webui/.gitignore +++ b/webui/.gitignore @@ -1,2 +1,8 @@ node_modules/ +build/ dist/ +coverage/ +.DS_Store +*.log +.env* +!.env.example diff --git a/webui/README.md b/webui/README.md new file mode 100644 index 0000000..7d78c01 --- /dev/null +++ b/webui/README.md @@ -0,0 +1,20 @@ +