makes POCKETBASE_ENCRYPTION_KEY optional

This commit is contained in:
Christian Beutel
2025-03-28 21:10:50 +01:00
parent aec3452eff
commit 2ce2b5e742
2 changed files with 2 additions and 2 deletions

View File

@@ -35,7 +35,7 @@ func verifySettings() {
encryptionKey := os.Getenv("POCKETBASE_ENCRYPTION_KEY")
if len(encryptionKey) == 0 || len(encryptionKey) < 32 {
log.Fatal("POCKETBASE_ENCRYPTION_KEY not set or is shorter than 32 bytes")
log.Println("POCKETBASE_ENCRYPTION_KEY not set or is shorter than 32 bytes")
}
meiliMasterKey := os.Getenv("MEILI_MASTER_KEY")

View File

@@ -8,7 +8,7 @@ wanderer uses categories to classify what kind of activity a trail belongs to. O
## Backend access
First, you need access to the PocketBase backend. If you are using docker make sure to forward the internal port 8090 to a public port. With the default configuration, the PocketBase admin panel is available at `http://localhost:8090/_/`. If this is your first time visiting the panel you will need to create an admin account.
To create backend acces navigate to your docker-compose.yaml file and type:
To create backend access navigate to your docker-compose.yaml file and type:
```
docker compose exec -it db /pocketbase superuser upsert email@example.com myverysecurepassword
```