pocketbase

  1. Alexander Stolte

    Android Example [B4X] PocketBase - Deleting files

    https://www.b4x.com/android/forum/threads/b4x-pocketbase-open-source-backend-in-1-file.165213/ Please read the official documentation about deleting files in pocketbase: https://pocketbase.io/docs/files-handling/#deleting-files There are several ways to delete files with the B4X-Pocketbase...
  2. Alexander Stolte

    Android Tutorial [B4X] PocketBase - How to reach api via smartphone on the same network when hosted locally

    https://www.b4x.com/android/forum/threads/b4x-pocketbase-open-source-backend-in-1-file.165213/#content If you develop with B4J with Pocketbase, then you simply enter the localhost address (127.0.0.1:8090) and reach the pocketbase api. xPocketbase.Initialize("http://127.0.0.1:8090") 'Localhost...
  3. Alexander Stolte

    Android Example [B4X] PocketBase - Authentification

    https://www.b4x.com/android/forum/threads/b4x-pocketbase-open-source-backend-in-1-file.165213/#content Please read the official documentation about auth in pocketbase: https://pocketbase.io/docs/authentication/ PocketBase authentication allows you to register users, log them in, manage their...
  4. Alexander Stolte

    Android Example [B4X] PocketBase - Storage

    https://www.b4x.com/android/forum/threads/b4x-pocketbase-open-source-backend-in-1-file.165213/#content Please read the official documentation about storage in pocketbase: https://pocketbase.io/docs/files-handling/ Uploading files To upload files, you must first add a file field to your...
  5. Alexander Stolte

    Android Example [B4X] PocketBase - Database CRUD

    https://www.b4x.com/android/forum/threads/b4x-pocketbase-open-source-backend-in-1-file.165213/#content This is a very simple tutorial on how to use the CRUD options. A more detailed tutorial is coming soon. CREATE Dim Insert As Pocketbase_DatabaseInsert =...
  6. Alexander Stolte

    B4A Library [B4X] PocketBase - Open Source backend in 1 file

    PocketBase was created to assist building self-contained applications that can run on a single server without requiring to install anything in addition. The basic idea is that the common functionality like crud, auth, files upload, auto TLS, etc. are handled out of the box, allowing you to focus...
  7. FrostCodes

    B4A Class FrostPocketBaseMobile - A Full Wrapper for Pocketbase-mobile server

    Hello B4X Community, I'm excited to share a new library I've wrapped for B4A developers. FrostPocketBaseMobile is a B4A wrapper around the Pocketbase-mobile library by Rohit Sangwan. This wrapper brings the power of a Pocketbase Server to your B4A projects, allowing you to easily integrate a...
  8. Mashiane

    B4J Tutorial [Web] PocketBase - deploying your SQLite WebServer back-end on Railway.app

    Hi One is able to host Pocketbase on Railway.app. This deployment is based on Docker Image. You need a GitHub account. 1. Create an account on Railway.app and link to your Github. 2. Click this link to publish a PocketBase instance on port 8090 there...
  9. Mashiane

    B4J Tutorial [Web] PocketBase - running multiple instances in the same machine - different ports

    Hi Download PocketBase By default, after configuring PocketBase, i.e. the SQLite WebServer, it can run on port 8090 when you start it and use it for your back-ends. I have just learned that you can run multiple instances of PocketBase on the same machine and on different ports. 1. Ensure...
Top