This is a personal project template for SvelteKit with PocketBase. (A personal favorite for quick side projects)
First, navigate to the backend directory
cd backendThen, download the pocketbase executable from the releases page
wget https://github.com/pocketbase/pocketbase/releases/download/v0.22.18/pocketbase_0.22.18_darwin_arm64.zip
unzip pocketbase_0.22.18_darwin_arm64.zip
rm pocketbase_0.22.18_darwin_arm64.zip
./pocketbase serveThen, navigate to the client directory
cd clientInstall the dependencies
yarn installNext, create a .env from the .sample.env file
cp .sample.env .envFinally, start the client
yarn dev