1
0
mirror of https://github.com/pocketbase/pocketbase.git synced 2024-11-25 01:16:21 +02:00
Open Source realtime backend in 1 file https://pocketbase.io/
Go to file
2022-11-13 13:05:06 +02:00
.github updated go action min version 2022-11-02 22:08:30 +02:00
apis [#979] added Kakao OAuth2 provider 2022-11-13 13:05:06 +02:00
cmd initial v0.8 pre-release 2022-10-30 10:28:14 +02:00
core [#979] added Kakao OAuth2 provider 2022-11-13 13:05:06 +02:00
daos updated db pool limits, added logs VACUUM, updated api docs 2022-11-13 00:38:18 +02:00
examples/base initial v0.8 pre-release 2022-10-30 10:28:14 +02:00
forms updated db pool limits, added logs VACUUM, updated api docs 2022-11-13 00:38:18 +02:00
mails initial v0.8 pre-release 2022-10-30 10:28:14 +02:00
migrations initial v0.8 pre-release 2022-10-30 10:28:14 +02:00
models renamed PseudoRandom to Pseudorandom 2022-11-06 15:28:41 +02:00
resolvers renamed PseudoRandom to Pseudorandom 2022-11-06 15:28:41 +02:00
tests removed DrySubmit form errors wrapping and added more api tests 2022-11-01 00:28:33 +02:00
tokens initial v0.8 pre-release 2022-10-30 10:28:14 +02:00
tools [#979] added Kakao OAuth2 provider 2022-11-13 13:05:06 +02:00
ui [#979] added Kakao OAuth2 provider 2022-11-13 13:05:06 +02:00
.gitignore added pre-release note 2022-10-30 10:33:42 +02:00
.goreleaser.yaml [#250] added armv7 on linux as a build target 2022-08-01 10:29:06 +03:00
CONTRIBUTING.md [#147] added CONTRIBUTING.md 2022-07-17 20:33:12 +03:00
go.mod updated go deps and loaded auth collection fields for autocomplete 2022-11-04 15:55:25 +02:00
go.sum updated go deps and loaded auth collection fields for autocomplete 2022-11-04 15:55:25 +02:00
golangci.yml [#38] added lint and used the lint suggestions 2022-07-09 17:17:41 +03:00
LICENSE.md initial public commit 2022-07-07 00:19:05 +03:00
Makefile initial v0.8 pre-release 2022-10-30 10:28:14 +02:00
pocketbase_test.go [#409] added pocketbase.NewWithConfig factory 2022-09-10 22:53:17 +03:00
pocketbase.go initial v0.8 pre-release 2022-10-30 10:28:14 +02:00
README.md added pre-release note 2022-10-30 10:33:42 +02:00

PocketBase - open source backend in 1 file

build Latest releases Go package documentation

⚠️ This is a pre-release branch, contains breaking changes and works only with JS SDK v0.8+ and Dart SDK v0.5+!

For more details on the changes please check the v0.8.0-rc release notes.

PocketBase is an open source Go backend, consisting of:

  • embedded database (SQLite) with realtime subscriptions
  • built-in files and users management
  • convenient Admin dashboard UI
  • and simple REST-ish API

For documentation and examples, please visit https://pocketbase.io/docs.

⚠️ Please keep in mind that PocketBase is still under active development and therefore full backward compatibility is not guaranteed before reaching v1.0.0.

API SDK clients

The easiest way to interact with the API is to use one of the official SDK clients:

Overview

PocketBase could be downloaded directly as a standalone app or it could be used as a Go framework/toolkit which allows you to build your own custom app specific business logic and still have a single portable executable at the end.

Installation

# go 1.18+
go get github.com/pocketbase/pocketbase

For Windows, you may have to use go 1.19+ due to an incorrect js mime type in the Windows Registry (see issue#6).

Example

package main

import (
    "log"
    "net/http"

    "github.com/labstack/echo/v5"
    "github.com/pocketbase/pocketbase"
    "github.com/pocketbase/pocketbase/apis"
    "github.com/pocketbase/pocketbase/core"
)

func main() {
    app := pocketbase.New()

    app.OnBeforeServe().Add(func(e *core.ServeEvent) error {
        // add new "GET /api/hello" route to the app router (echo)
        e.Router.AddRoute(echo.Route{
            Method: http.MethodGet,
            Path:   "/api/hello",
            Handler: func(c echo.Context) error {
                return c.String(200, "Hello world!")
            },
            Middlewares: []echo.MiddlewareFunc{
                apis.RequireAdminOrRecordAuth(),
            },
        })

        return nil
    })

    if err := app.Start(); err != nil {
        log.Fatal(err)
    }
}

Running and building

Running/building the application is the same as for any other Go program, aka. just go run and go build.

PocketBase embeds SQLite, but doesn't require CGO.

If CGO is enabled, it will use mattn/go-sqlite3 driver, otherwise - modernc.org/sqlite. You can enable and disable CGO by setting the CGO_ENABLED environment variable to 1 or 0 respectively.

Enable CGO only if you really need to squeeze the read/write query performance at the expense of complicating cross compilation.

To build the minimal standalone executable, like the prebuilt ones in the releases page, you can simply run go build inside the examples/base directory.

Testing

PocketBase comes with mixed bag of unit and integration tests. To run them, use the default go test command:

go test ./...

Check also the Testing guide to learn how to write your own custom application tests.

Security

If you discover a security vulnerability within PocketBase, please send an e-mail to support at pocketbase.io.

All reports will be promptly addressed and you'll be credited accordingly.

Contributing

PocketBase is free and open source project licensed under the MIT License.

You could help continuing its development by:

Please note that PocketBase was initially created to serve as a new backend for my other open source project - Presentator (see #183), so all feature requests will be first aligned with what we need for Presentator v3.