From 63bd7637c4e406aa1c5f7013a458157266705a5e Mon Sep 17 00:00:00 2001 From: Ben Allfree Date: Sun, 12 Nov 2023 22:01:44 +0000 Subject: [PATCH] fix: spelling --- readme.md | 2 +- src/services/InstanceService/index.ts | 4 ++-- src/services/PocketBaseService/index.ts | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/readme.md b/readme.md index aeeda9fb..da0c5998 100644 --- a/readme.md +++ b/readme.md @@ -112,7 +112,7 @@ https://app.pockethost.lvh.me login: `user@pockethost.lvh.me` password: `password` -The user `user@pockethost.lvh.me` owns `instance1` and `instnace2`, each which is running in its own region on separate edge servers. +The user `user@pockethost.lvh.me` owns `instance1` and `instance2`, each which is running in its own region on separate edge servers. That's it! You can control all this and much more from the `.env-template` file. It's fully documented, but here it is again just in case. diff --git a/src/services/InstanceService/index.ts b/src/services/InstanceService/index.ts index 61450a83..3f1840ce 100644 --- a/src/services/InstanceService/index.ts +++ b/src/services/InstanceService/index.ts @@ -271,10 +271,10 @@ export const instanceService = mkSingleton( } catch (e) { warn(`Error spawning: ${e}`) userInstanceLogger.error( - `Could not launch PocketBase ${instance.version}. Please review your instnace logs at https://app.pockethost.io/app/instances/${instance.id} and join us in the Discord support channel https://discord.gg/nVTxCMEcGT.`, + `Could not launch PocketBase ${instance.version}. Please review your instance logs at https://app.pockethost.io/app/instances/${instance.id} and join us in the Discord support channel https://discord.gg/nVTxCMEcGT.`, ) throw new Error( - `Could not launch PocketBase ${instance.version}. Please review your instnace logs at https://app.pockethost.io/app/instances/${instance.id} and join us in the Discord support channel https://discord.gg/nVTxCMEcGT.`, + `Could not launch PocketBase ${instance.version}. Please review your instance logs at https://app.pockethost.io/app/instances/${instance.id} and join us in the Discord support channel https://discord.gg/nVTxCMEcGT.`, ) } })() diff --git a/src/services/PocketBaseService/index.ts b/src/services/PocketBaseService/index.ts index 1c97535f..6285412c 100644 --- a/src/services/PocketBaseService/index.ts +++ b/src/services/PocketBaseService/index.ts @@ -50,7 +50,7 @@ export const createPocketbaseService = async ( const _serviceLogger = LoggerService().create('PocketbaseService') const { dbg, error, warn, abort } = _serviceLogger - dbg(`Building docker image for instnace`) + dbg(`Building docker image for instance`) await buildImage(`Dockerfile`, INSTANCE_IMAGE_NAME) const { getLatestVersion, getVersion } =