move to centralized
All checks were successful
Deploy to Web Server flyer-crawler.projectium.com / deploy (push) Successful in 1m5s

This commit is contained in:
2025-12-02 19:15:35 -08:00
parent ec1a7fc2e9
commit c141af7267
2 changed files with 2 additions and 2 deletions

View File

@@ -90,7 +90,7 @@ jobs:
run: |
# Fail-fast check to ensure secrets are configured in Gitea for testing.
if [ -z "$DB_HOST" ] || [ -z "$DB_USER" ] || [ -z "$DB_PASSWORD" ] || [ -z "$DB_DATABASE" ] || [ -z "$GEMINI_API_KEY" ]; then
echo "ERROR: One or more test secrets (DB_HOST, DB_USER, DB_PASSWORD, DB_DATABASE, VITE_GOOGLE_GENAI_API_KEY) are not set."
echo "ERROR: One or more test secrets (DB_HOST, DB_USER, DB_PASSWORD, DB_DATABASE, GEMINI_API_KEY) are not set."
exit 1
fi

View File

@@ -31,7 +31,7 @@ We are working on an app to help people save money, by finding good deals that a
This project requires several secret keys to function. Create a `.env` file in the root of the project and see the `env.example` file for a complete template.
- **For the AI Service**: `VITE_GOOGLE_GENAI_API_KEY`. This is your public-facing Google Gemini API key.
- **For the AI Service**: `GEMINI_API_KEY`. This is your public-facing Google Gemini API key.
- **For the Database**: You will need to provide connection details for your PostgreSQL database, such as `DB_USER`, `DB_HOST`, `DB_DATABASE`, `DB_PASSWORD`, and `DB_PORT`.
## Setup and Installation