To be able to run this app you NEED to do this steps:
Install Dependencies
Run the following console command in the root directory:
npm install
#or
npm i
Setup Pocketbase
Download your prefered binary from the Pocketbase Documentation
Once you've downloaded and extracted the archive, you could start the application by running the following console command in the extracted directory:
./pocketbase serve
Pocketbase will give you an link like this
http://127.0.0.1:8090
Create a .env
file in with root directory with this inside:
POCKETBASE_URL = <your-url>
Replace
<your-url>
with the Pocketbase given url.
Download this file pb_schema.json.
Import the downloaded file in pocketbase on Settings -> Import collections
and Load from JSON file
.
Once you've completed the steps above, you can start a development server:
npm run dev
# or start the server and expose it to the network
npm run dev -- --host
Licensed under the MIT license.