2022-07-06 23:19:05 +02:00
< p align = "center" >
< a href = "https://pocketbase.io" target = "_blank" rel = "noopener" >
2022-11-18 23:32:59 +02:00
< img src = "https://i.imgur.com/5qimnm5.png" alt = "PocketBase - open source backend in 1 file" / >
2022-07-06 23:19:05 +02:00
< / a >
< / p >
< p align = "center" >
< a href = "https://github.com/pocketbase/pocketbase/actions/workflows/release.yaml" target = "_blank" rel = "noopener" > < img src = "https://github.com/pocketbase/pocketbase/actions/workflows/release.yaml/badge.svg" alt = "build" / > < / a >
< a href = "https://github.com/pocketbase/pocketbase/releases" target = "_blank" rel = "noopener" > < img src = "https://img.shields.io/github/release/pocketbase/pocketbase.svg" alt = "Latest releases" / > < / a >
< a href = "https://pkg.go.dev/github.com/pocketbase/pocketbase" target = "_blank" rel = "noopener" > < img src = "https://godoc.org/github.com/ganigeorgiev/fexpr?status.svg" alt = "Go package documentation" / > < / a >
< / p >
[PocketBase ](https://pocketbase.io ) is an open source Go backend, consisting of:
- embedded database (_SQLite_) with **realtime subscriptions**
2022-07-07 22:50:25 +02:00
- built-in **files and users management**
2022-07-06 23:19:05 +02:00
- convenient **Admin dashboard UI**
- and simple **REST-ish API**
**For documentation and examples, please visit https://pocketbase.io/docs.**
2023-10-16 19:18:05 +02:00
> [!WARNING]
> Please keep in mind that PocketBase is still under active development
2022-07-06 23:19:05 +02:00
> 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:
- **JavaScript - [pocketbase/js-sdk ](https://github.com/pocketbase/js-sdk )** (_browser and node_)
2022-07-31 12:05:05 +02:00
- **Dart - [pocketbase/dart-sdk ](https://github.com/pocketbase/dart-sdk )** (_web, mobile, desktop_)
2022-07-06 23:19:05 +02:00
## Overview
2022-09-02 09:00:36 +02:00
PocketBase could be [downloaded directly as a standalone app ](https://github.com/pocketbase/pocketbase/releases ) or it could be used as a Go framework/toolkit which allows you to build
2022-07-06 23:19:05 +02:00
your own custom app specific business logic and still have a single portable executable at the end.
### Installation
```sh
2023-12-02 12:43:22 +02:00
# go 1.21+
2022-07-06 23:19:05 +02:00
go get github.com/pocketbase/pocketbase
```
### Example
```go
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 {
2022-11-16 15:13:04 +02:00
// add new "GET /hello" route to the app router (echo)
2022-07-06 23:19:05 +02:00
e.Router.AddRoute(echo.Route{
Method: http.MethodGet,
2022-11-16 15:13:04 +02:00
Path: "/hello",
2022-07-06 23:19:05 +02:00
Handler: func(c echo.Context) error {
return c.String(200, "Hello world!")
},
Middlewares: []echo.MiddlewareFunc{
2022-11-16 15:13:04 +02:00
apis.ActivityLogger(app),
2022-07-06 23:19:05 +02:00
},
})
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.**
2023-01-14 13:50:19 +02:00
If CGO is enabled (aka. `CGO_ENABLED=1` ), it will use [mattn/go-sqlite3 ](https://pkg.go.dev/github.com/mattn/go-sqlite3 ) driver, otherwise - [modernc.org/sqlite ](https://pkg.go.dev/modernc.org/sqlite ).
2022-07-06 23:19:05 +02:00
Enable CGO only if you really need to squeeze the read/write query performance at the expense of complicating cross compilation.
2023-01-14 13:50:19 +02:00
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:
2023-12-02 12:43:22 +02:00
0. [Install Go 1.21+ ](https://go.dev/doc/install ) (_if you haven't already_)
2023-01-14 13:50:19 +02:00
1. Clone/download the repo
2. Navigate to `examples/base`
3. Run `GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build`
2023-10-16 19:18:05 +02:00
(_https://go.dev/doc/install/source#environment_)
2023-01-15 17:00:28 +02:00
4. Start the created executable by running `./base serve` .
2023-01-14 13:50:19 +02:00
The supported build targets by the non-cgo driver at the moment are:
2023-10-16 19:18:05 +02:00
2023-01-14 13:50:19 +02:00
```
darwin amd64
darwin arm64
freebsd amd64
freebsd arm64
linux 386
linux amd64
linux arm
linux arm64
linux ppc64le
linux riscv64
2023-10-16 19:27:37 +02:00
linux s390x
2023-01-14 13:50:19 +02:00
windows amd64
windows arm64
```
2022-07-13 07:12:25 +02:00
2022-07-06 23:19:05 +02:00
### Testing
PocketBase comes with mixed bag of unit and integration tests.
To run them, use the default `go test` command:
2023-10-16 19:18:05 +02:00
2022-07-06 23:19:05 +02:00
```sh
go test ./...
```
Check also the [Testing guide ](http://pocketbase.io/docs/testing ) 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** .
2022-12-11 18:55:55 +02:00
All reports will be promptly addressed, and you'll be credited accordingly.
2022-07-06 23:19:05 +02:00
## Contributing
PocketBase is free and open source project licensed under the [MIT License ](LICENSE.md ).
2022-11-16 15:13:04 +02:00
You are free to do whatever you want with it, even offering it as a paid service.
2022-07-06 23:19:05 +02:00
You could help continuing its development by:
2022-07-17 19:33:12 +02:00
- [Contribute to the source code ](CONTRIBUTING.md )
- [Suggest new features and report issues ](https://github.com/pocketbase/pocketbase/issues )
2022-07-06 23:19:05 +02:00
- [Donate a small amount ](https://pocketbase.io/support-us )
2023-07-08 13:01:02 +02:00
PRs for new OAuth2 providers, bug fixes, code optimizations and documentation improvements are more than welcome.
2022-11-16 15:13:04 +02:00
2023-07-08 13:01:02 +02:00
But please refrain creating PRs for _new features_ without previously discussing the implementation details.
PocketBase has a [roadmap ](https://github.com/orgs/pocketbase/projects/2 ) and I try to work on issues in specific order and such PRs often come in out of nowhere and skew all initial planning with tedious back-and-forth communication.
2022-11-16 15:13:04 +02:00
Don't get upset if I close your PR, even if it is well executed and tested. This doesn't mean that it will never be merged.
2022-11-17 14:17:10 +02:00
Later we can always refer to it and/or take pieces of your implementation when the time comes to work on the issue (don't worry you'll be credited in the release notes).
2022-11-16 15:13:04 +02:00
2023-10-16 19:18:05 +02:00
> [!NOTE]
> PocketBase was initially created to serve as a new backend for my other open source project - [Presentator](https://presentator.io) (see [#183](https://github.com/presentator/presentator/issues/183)),
> so all feature requests will be first aligned with what we need for Presentator v3.