From ef451ec621ebc300da38eaae265757e00692db02 Mon Sep 17 00:00:00 2001 From: skidoodle Date: Fri, 3 Jan 2025 12:33:23 +0100 Subject: [PATCH] fix: forgot collection env --- readme.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/readme.md b/readme.md index d77b19f..ed35b55 100644 --- a/readme.md +++ b/readme.md @@ -21,12 +21,14 @@ Before running the app, set the following environment variables in a `.env.local - `NEXT_PUBLIC_POCKETBASE_URL`: The URL of your PocketBase server. - `EMAIL`: The email address used to log in to the PocketBase instance. - `PASSWORD`: The password used to log in to the PocketBase instance. +- `COLLECTION`: The name of the PocketBase collection to store your items. Example: ```env NEXT_PUBLIC_POCKETBASE_URL=https://pocketbase EMAIL=example@example.com PASSWORD=yourpassword +COLLECTION=pbcollection ``` ### Running Locally @@ -55,6 +57,7 @@ Access the app at `http://localhost:3000`. -e NEXT_PUBLIC_POCKETBASE_URL=https://pocketbase \ -e EMAIL=example@example.com \ -e PASSWORD=yourpassword \ + -e COLLECTION=pbcollection \ ghcr.io/skidoodle/budgetable:main ``` 3. Access the app at `http://localhost:3000`. @@ -73,6 +76,7 @@ Access the app at `http://localhost:3000`. NEXT_PUBLIC_POCKETBASE_URL: https://pocketbase EMAIL: example@example.com PASSWORD: yourpassword + COLLECTION=pbcollection volumes: data: ```