1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-04-10 15:47:32 +00:00

Bumpb version for 1.10.1.

This commit is contained in:
Nigel Gott 2022-06-09 07:33:23 +00:00
parent db253b1e2a
commit bbfb3d964e
16 changed files with 61 additions and 59 deletions

View file

@ -17,7 +17,7 @@ tool gives you the powers of a developer without leaving your browser.
[![Deploy to Heroku](https://www.herokucdn.com/deploy/button.svg)](https://heroku.com/deploy?template=https://github.com/bram2w/baserow/tree/master) [![Deploy to Heroku](https://www.herokucdn.com/deploy/button.svg)](https://heroku.com/deploy?template=https://github.com/bram2w/baserow/tree/master)
```bash ```bash
docker run -v baserow_data:/baserow/data -p 80:80 -p 443:443 baserow/baserow:1.10.0 docker run -v baserow_data:/baserow/data -p 80:80 -p 443:443 baserow/baserow:1.10.1
``` ```
![Baserow screenshot](docs/assets/screenshot.png "Baserow screenshot") ![Baserow screenshot](docs/assets/screenshot.png "Baserow screenshot")
@ -86,7 +86,7 @@ Created by Baserow B.V. - bram@baserow.io.
Distributes under the MIT license. See `LICENSE` for more information. Distributes under the MIT license. See `LICENSE` for more information.
Version: 1.10.0 Version: 1.10.1
The official repository can be found at https://gitlab.com/bramw/baserow. The official repository can be found at https://gitlab.com/bramw/baserow.

View file

@ -6,7 +6,7 @@ from setuptools import find_packages, setup
PROJECT_DIR = os.path.dirname(__file__) PROJECT_DIR = os.path.dirname(__file__)
REQUIREMENTS_DIR = os.path.join(PROJECT_DIR, "requirements") REQUIREMENTS_DIR = os.path.join(PROJECT_DIR, "requirements")
VERSION = "1.10.0" VERSION = "1.10.1"
def get_requirements(env): def get_requirements(env):

View file

@ -260,7 +260,7 @@ SPECTACULAR_SETTINGS = {
"name": "MIT", "name": "MIT",
"url": "https://gitlab.com/bramw/baserow/-/blob/master/LICENSE", "url": "https://gitlab.com/bramw/baserow/-/blob/master/LICENSE",
}, },
"VERSION": "1.10.0", "VERSION": "1.10.1",
"SERVE_INCLUDE_SCHEMA": False, "SERVE_INCLUDE_SCHEMA": False,
"TAGS": [ "TAGS": [
{"name": "Settings"}, {"name": "Settings"},

View file

@ -1 +1 @@
VERSION = "1.10.0" VERSION = "1.10.1"

View file

@ -2,6 +2,8 @@
## Unreleased ## Unreleased
## Released (2022-06-09 1.10.1)
* Plugins can now include their own menu or other template in the main menu sidebar. * Plugins can now include their own menu or other template in the main menu sidebar.
* Added the ability to use commas as separators in number fields * Added the ability to use commas as separators in number fields
* Shift+Enter on grid view exit from editing mode for long text field * Shift+Enter on grid view exit from editing mode for long text field
@ -37,7 +39,7 @@
* Fixed bug preventing file uploads via an url for self-hosters * Fixed bug preventing file uploads via an url for self-hosters
* Added new environment variable BASEROW_FILE_UPLOAD_SIZE_LIMIT_MB * Added new environment variable BASEROW_FILE_UPLOAD_SIZE_LIMIT_MB
## Released (2022-10-05 1.10.0) ## Released (2022-05-10 1.10.0)
* Added batch create/update/delete rows endpoints. These endpoints make it possible to * Added batch create/update/delete rows endpoints. These endpoints make it possible to
modify multiple rows at once. Currently, row created, row updated, and row deleted modify multiple rows at once. Currently, row created, row updated, and row deleted

View file

@ -15,7 +15,7 @@ tool gives you the powers of a developer without leaving your browser.
[Vue.js](https://vuejs.org/) and [PostgreSQL](https://www.postgresql.org/). [Vue.js](https://vuejs.org/) and [PostgreSQL](https://www.postgresql.org/).
```bash ```bash
docker run -v baserow_data:/baserow/data -p 80:80 -p 443:443 baserow/baserow:1.10.0 docker run -v baserow_data:/baserow/data -p 80:80 -p 443:443 baserow/baserow:1.10.1
``` ```
## Quick Reference ## Quick Reference
@ -49,7 +49,7 @@ docker run \
-p 80:80 \ -p 80:80 \
-p 443:443 \ -p 443:443 \
--restart unless-stopped \ --restart unless-stopped \
baserow/baserow:1.10.0 baserow/baserow:1.10.1
``` ```
* Change `BASEROW_PUBLIC_URL` to `https://YOUR_DOMAIN` or `http://YOUR_IP` to enable * Change `BASEROW_PUBLIC_URL` to `https://YOUR_DOMAIN` or `http://YOUR_IP` to enable
@ -71,7 +71,7 @@ docker run \
## Image Feature Overview ## Image Feature Overview
The `baserow/baserow:1.10.0` image by default runs all of Baserow's various services in a The `baserow/baserow:1.10.1` image by default runs all of Baserow's various services in a
single container for ease of use. A quick summary of its features are: single container for ease of use. A quick summary of its features are:
* Runs a Postgres database and Redis server by default internally and stores all data in * Runs a Postgres database and Redis server by default internally and stores all data in
@ -114,7 +114,7 @@ docker run \
-p 80:80 \ -p 80:80 \
-p 443:443 \ -p 443:443 \
--restart unless-stopped \ --restart unless-stopped \
baserow/baserow:1.10.0 baserow/baserow:1.10.1
``` ```
### Behind a reverse proxy already handling ssl ### Behind a reverse proxy already handling ssl
@ -127,7 +127,7 @@ docker run \
-v baserow_data:/baserow/data \ -v baserow_data:/baserow/data \
-p 80:80 \ -p 80:80 \
--restart unless-stopped \ --restart unless-stopped \
baserow/baserow:1.10.0 baserow/baserow:1.10.1
``` ```
### On a nonstandard HTTP port ### On a nonstandard HTTP port
@ -140,7 +140,7 @@ docker run \
-v baserow_data:/baserow/data \ -v baserow_data:/baserow/data \
-p 3001:80 \ -p 3001:80 \
--restart unless-stopped \ --restart unless-stopped \
baserow/baserow:1.10.0 baserow/baserow:1.10.1
``` ```
### With an external PostgresSQL server ### With an external PostgresSQL server
@ -159,7 +159,7 @@ docker run \
-p 80:80 \ -p 80:80 \
-p 443:443 \ -p 443:443 \
--restart unless-stopped \ --restart unless-stopped \
baserow/baserow:1.10.0 baserow/baserow:1.10.1
``` ```
### With an external Redis server ### With an external Redis server
@ -178,7 +178,7 @@ docker run \
-p 80:80 \ -p 80:80 \
-p 443:443 \ -p 443:443 \
--restart unless-stopped \ --restart unless-stopped \
baserow/baserow:1.10.0 baserow/baserow:1.10.1
``` ```
### With an external email server ### With an external email server
@ -198,7 +198,7 @@ docker run \
-p 80:80 \ -p 80:80 \
-p 443:443 \ -p 443:443 \
--restart unless-stopped \ --restart unless-stopped \
baserow/baserow:1.10.0 baserow/baserow:1.10.1
``` ```
### Start just the embedded database ### Start just the embedded database
@ -211,7 +211,7 @@ docker run -it \
--name baserow \ --name baserow \
-p 5432:5432 \ -p 5432:5432 \
-v baserow_data:/baserow/data \ -v baserow_data:/baserow/data \
baserow/baserow:1.10.0 \ baserow/baserow:1.10.1 \
start-only-db start-only-db
# Now get the password from # Now get the password from
docker exec -it baserow cat /baserow/data/.pgpass docker exec -it baserow cat /baserow/data/.pgpass
@ -229,7 +229,7 @@ docker run -it \
--rm \ --rm \
--name baserow \ --name baserow \
-v baserow_data:/baserow/data \ -v baserow_data:/baserow/data \
baserow/baserow:1.10.0 \ baserow/baserow:1.10.1 \
backend-cmd-with-db manage dbshell backend-cmd-with-db manage dbshell
``` ```
@ -286,16 +286,16 @@ the command below.
```bash ```bash
# First read the help message for this command # First read the help message for this command
docker run -it --rm -v baserow_data:/baserow/data baserow/baserow:1.10.0 \ docker run -it --rm -v baserow_data:/baserow/data baserow/baserow:1.10.1 \
backend-cmd-with-db backup backend-cmd-with-db backup
# By default backs up to the backups folder in the baserow_data volume. # By default backs up to the backups folder in the baserow_data volume.
docker run -it --rm -v baserow_data:/baserow/data baserow/baserow:1.10.0 \ docker run -it --rm -v baserow_data:/baserow/data baserow/baserow:1.10.1 \
backend-cmd-with-db backup -f /baserow/data/backups/backup.tar.gz backend-cmd-with-db backup -f /baserow/data/backups/backup.tar.gz
# Or backup to a file on your host instead run something like: # Or backup to a file on your host instead run something like:
docker run -it --rm -v baserow_data:/baserow/data -v $PWD:/baserow/host \ docker run -it --rm -v baserow_data:/baserow/data -v $PWD:/baserow/host \
baserow/baserow:1.10.0 backend-cmd-with-db backup -f /baserow/host/backup.tar.gz baserow/baserow:1.10.1 backend-cmd-with-db backup -f /baserow/host/backup.tar.gz
``` ```
### Restore only Baserow's Postgres Database ### Restore only Baserow's Postgres Database
@ -364,7 +364,7 @@ docker run \
-p 80:80 \ -p 80:80 \
-p 443:443 \ -p 443:443 \
--restart unless-stopped \ --restart unless-stopped \
baserow/baserow:1.10.0 baserow/baserow:1.10.1
``` ```
Or you can just store it directly in the volume at `baserow_data/env` meaning it will Or you can just store it directly in the volume at `baserow_data/env` meaning it will
@ -373,7 +373,7 @@ be loaded whenever you mount in this data volume.
### Building your own image from Baserow ### Building your own image from Baserow
```dockerfile ```dockerfile
FROM baserow/baserow:1.10.0 FROM baserow/baserow:1.10.1
# Any .sh files found in /baserow/supervisor/env/ will be sourced and loaded at startup # Any .sh files found in /baserow/supervisor/env/ will be sourced and loaded at startup
# useful for storing your own environment variable overrides. # useful for storing your own environment variable overrides.

View file

@ -14,7 +14,7 @@ cat << EOF
██████╔╝██║ ██║███████║███████╗██║ ██║╚██████╔╝╚███╔███╔╝ ██████╔╝██║ ██║███████║███████╗██║ ██║╚██████╔╝╚███╔███╔╝
╚═════╝ ╚═╝ ╚═╝╚══════╝╚══════╝╚═╝ ╚═╝ ╚═════╝ ╚══╝╚══╝ ╚═════╝ ╚═╝ ╚═╝╚══════╝╚══════╝╚═╝ ╚═╝ ╚═════╝ ╚══╝╚══╝
Version 1.10.0 Version 1.10.1
========================================================================================= =========================================================================================
EOF EOF

View file

@ -8,7 +8,7 @@
"contactEmail": "bram@baserow.io", "contactEmail": "bram@baserow.io",
"icon": "file://logo.png", "icon": "file://logo.png",
"tags": ["no-code", "nocode", "database", "data", "collaborate", "airtable"], "tags": ["no-code", "nocode", "database", "data", "collaborate", "airtable"],
"version": "1.10.0", "version": "1.10.1",
"healthCheckPath": "/api/_health", "healthCheckPath": "/api/_health",
"httpPort": 80, "httpPort": 80,
"addons": { "addons": {

View file

@ -1,4 +1,4 @@
ARG FROM_IMAGE=baserow/baserow:1.10.0 ARG FROM_IMAGE=baserow/baserow:1.10.1
# This is pinned as version pinning is done by the CI setting FROM_IMAGE. # This is pinned as version pinning is done by the CI setting FROM_IMAGE.
# hadolint ignore=DL3006 # hadolint ignore=DL3006
FROM $FROM_IMAGE as image_base FROM $FROM_IMAGE as image_base

View file

@ -184,7 +184,7 @@ services:
local: local:
backend: backend:
image: baserow/backend:1.10.0 image: baserow/backend:1.10.1
restart: unless-stopped restart: unless-stopped
environment: environment:
<<: *common-backend-variables <<: *common-backend-variables
@ -197,7 +197,7 @@ services:
local: local:
web-frontend: web-frontend:
image: baserow/web-frontend:1.10.0 image: baserow/web-frontend:1.10.1
restart: unless-stopped restart: unless-stopped
environment: environment:
<<: *common-variables <<: *common-variables
@ -207,7 +207,7 @@ services:
local: local:
celery: celery:
image: baserow/backend:1.10.0 image: baserow/backend:1.10.1
restart: unless-stopped restart: unless-stopped
environment: environment:
<<: *common-backend-variables <<: *common-backend-variables
@ -224,7 +224,7 @@ services:
local: local:
celery-export-worker: celery-export-worker:
image: baserow/backend:1.10.0 image: baserow/backend:1.10.1
restart: unless-stopped restart: unless-stopped
command: celery-exportworker command: celery-exportworker
# The backend image's baked in healthcheck defaults to the django healthcheck # The backend image's baked in healthcheck defaults to the django healthcheck
@ -241,7 +241,7 @@ services:
local: local:
celery-beat-worker: celery-beat-worker:
image: baserow/backend:1.10.0 image: baserow/backend:1.10.1
restart: unless-stopped restart: unless-stopped
command: celery-beat command: celery-beat
# See https://github.com/sibson/redbeat/issues/129#issuecomment-1057478237 # See https://github.com/sibson/redbeat/issues/129#issuecomment-1057478237

View file

@ -46,7 +46,7 @@ $ cd baserow/deploy/cloudron
After that you can install the Baserow Cloudron app by executing the following commands. After that you can install the Baserow Cloudron app by executing the following commands.
``` ```
$ cloudron install -l baserow.{YOUR_DOMAIN} --image baserow/cloudron:1.10.0 $ cloudron install -l baserow.{YOUR_DOMAIN} --image baserow/cloudron:1.10.1
App is being installed. App is being installed.
... ...
App is installed. App is installed.
@ -89,7 +89,7 @@ the `baserow/deploy/cloudron` folder, you can upgrade your cloudron baserow serv
the latest version by running the following command: the latest version by running the following command:
``` ```
cloudron update --app {YOUR_APP_ID} --image baserow/cloudron:1.10.0 cloudron update --app {YOUR_APP_ID} --image baserow/cloudron:1.10.1
``` ```
> Note that you must replace the image with the most recent image of Baserow. The > Note that you must replace the image with the most recent image of Baserow. The

View file

@ -34,7 +34,7 @@ docker run -e BASEROW_PUBLIC_URL=http://localhost \
-v baserow_data:/baserow/data \ -v baserow_data:/baserow/data \
-p 80:80 \ -p 80:80 \
-p 443:443 \ -p 443:443 \
baserow/baserow:1.10.0 baserow/baserow:1.10.1
# Watch the logs for Baserow to come available by running: # Watch the logs for Baserow to come available by running:
docker logs baserow docker logs baserow
``` ```
@ -147,7 +147,7 @@ docker run \
-v /baserow/media:/baserow/data/media \ -v /baserow/media:/baserow/data/media \
-p 80:80 \ -p 80:80 \
-p 443:443 \ -p 443:443 \
baserow/baserow:1.10.0 baserow/baserow:1.10.1
# Check the logs and wait for Baserow to become available # Check the logs and wait for Baserow to become available
docker logs baserow docker logs baserow
``` ```

View file

@ -10,9 +10,9 @@
Baserow consists of a number of services, two of which are built and provided as Baserow consists of a number of services, two of which are built and provided as
separate standalone images by us: separate standalone images by us:
* `baserow/backend:1.10.0` which by default starts the Gunicorn Django backend server * `baserow/backend:1.10.1` which by default starts the Gunicorn Django backend server
for Baserow but is also used to start the celery workers and celery beat services. for Baserow but is also used to start the celery workers and celery beat services.
* `baserow/web-frontend:1.10.0` which is a Nuxt server providing Server Side rendering * `baserow/web-frontend:1.10.1` which is a Nuxt server providing Server Side rendering
for the website. for the website.
If you want to use your own container orchestration software like Kubernetes then these If you want to use your own container orchestration software like Kubernetes then these
@ -27,10 +27,10 @@ in the root of our repository.
These are all the services you need to set up to run a Baserow using the standalone These are all the services you need to set up to run a Baserow using the standalone
images: images:
* `baserow/backend:1.10.0` (default command is `gunicorn`) * `baserow/backend:1.10.1` (default command is `gunicorn`)
* `baserow/backend:1.10.0` with command `celery-worker` * `baserow/backend:1.10.1` with command `celery-worker`
* `baserow/backend:1.10.0` with command `celery-export-worker` * `baserow/backend:1.10.1` with command `celery-export-worker`
* `baserow/web-frontend:1.10.0` (default command is `nuxt-local`) * `baserow/web-frontend:1.10.1` (default command is `nuxt-local`)
* A postgres database * A postgres database
* A redis server * A redis server

View file

@ -27,7 +27,7 @@ docker run \
-p 80:80 \ -p 80:80 \
-p 443:443 \ -p 443:443 \
--restart unless-stopped \ --restart unless-stopped \
baserow/baserow:1.10.0 baserow/baserow:1.10.1
``` ```
* Change `BASEROW_PUBLIC_URL` to `https://YOUR_DOMAIN` or `http://YOUR_IP` to enable * Change `BASEROW_PUBLIC_URL` to `https://YOUR_DOMAIN` or `http://YOUR_IP` to enable
@ -50,7 +50,7 @@ docker run \
## Image Feature Overview ## Image Feature Overview
The `baserow/baserow:1.10.0` image by default runs all of Baserow's various services in a The `baserow/baserow:1.10.1` image by default runs all of Baserow's various services in a
single container for ease of use. A quick summary of its features are: single container for ease of use. A quick summary of its features are:
* Runs a Postgres database and Redis server by default internally and stores all data in * Runs a Postgres database and Redis server by default internally and stores all data in
@ -143,7 +143,7 @@ docker run \
-p 80:80 \ -p 80:80 \
-p 443:443 \ -p 443:443 \
--restart unless-stopped \ --restart unless-stopped \
baserow/baserow:1.10.0 baserow/baserow:1.10.1
``` ```
### Behind a reverse proxy already handling ssl ### Behind a reverse proxy already handling ssl
@ -156,7 +156,7 @@ docker run \
-v baserow_data:/baserow/data \ -v baserow_data:/baserow/data \
-p 80:80 \ -p 80:80 \
--restart unless-stopped \ --restart unless-stopped \
baserow/baserow:1.10.0 baserow/baserow:1.10.1
``` ```
### On a nonstandard HTTP port ### On a nonstandard HTTP port
@ -169,7 +169,7 @@ docker run \
-v baserow_data:/baserow/data \ -v baserow_data:/baserow/data \
-p 3001:80 \ -p 3001:80 \
--restart unless-stopped \ --restart unless-stopped \
baserow/baserow:1.10.0 baserow/baserow:1.10.1
``` ```
### With an external PostgresSQL server ### With an external PostgresSQL server
@ -188,7 +188,7 @@ docker run \
-p 80:80 \ -p 80:80 \
-p 443:443 \ -p 443:443 \
--restart unless-stopped \ --restart unless-stopped \
baserow/baserow:1.10.0 baserow/baserow:1.10.1
``` ```
### With an external Redis server ### With an external Redis server
@ -207,7 +207,7 @@ docker run \
-p 80:80 \ -p 80:80 \
-p 443:443 \ -p 443:443 \
--restart unless-stopped \ --restart unless-stopped \
baserow/baserow:1.10.0 baserow/baserow:1.10.1
``` ```
### With an external email server ### With an external email server
@ -227,7 +227,7 @@ docker run \
-p 80:80 \ -p 80:80 \
-p 443:443 \ -p 443:443 \
--restart unless-stopped \ --restart unless-stopped \
baserow/baserow:1.10.0 baserow/baserow:1.10.1
``` ```
### With a Postgresql server running on the same host as the Baserow docker container ### With a Postgresql server running on the same host as the Baserow docker container
@ -265,7 +265,7 @@ docker run \
-v baserow_data:/baserow/data \ -v baserow_data:/baserow/data \
-p 80:80 \ -p 80:80 \
-p 443:443 \ -p 443:443 \
baserow/baserow:1.10.0 baserow/baserow:1.10.1
``` ```
### Supply secrets using files ### Supply secrets using files
@ -291,7 +291,7 @@ docker run \
-v baserow_data:/baserow/data \ -v baserow_data:/baserow/data \
-p 80:80 \ -p 80:80 \
-p 443:443 \ -p 443:443 \
baserow/baserow:1.10.0 baserow/baserow:1.10.1
``` ```
### Start just the embedded database ### Start just the embedded database
@ -304,7 +304,7 @@ docker run -it \
--name baserow \ --name baserow \
-p 5432:5432 \ -p 5432:5432 \
-v baserow_data:/baserow/data \ -v baserow_data:/baserow/data \
baserow/baserow:1.10.0 \ baserow/baserow:1.10.1 \
start-only-db start-only-db
# Now get the password from # Now get the password from
docker exec -it baserow cat /baserow/data/.pgpass docker exec -it baserow cat /baserow/data/.pgpass
@ -322,7 +322,7 @@ docker run -it \
--rm \ --rm \
--name baserow \ --name baserow \
-v baserow_data:/baserow/data \ -v baserow_data:/baserow/data \
baserow/baserow:1.10.0 \ baserow/baserow:1.10.1 \
backend-cmd-with-db manage dbshell backend-cmd-with-db manage dbshell
``` ```
@ -378,16 +378,16 @@ the command below.
```bash ```bash
# First read the help message for this command # First read the help message for this command
docker run -it --rm -v baserow_data:/baserow/data baserow/baserow:1.10.0 \ docker run -it --rm -v baserow_data:/baserow/data baserow/baserow:1.10.1 \
backend-cmd-with-db backup backend-cmd-with-db backup
# By default backs up to the backups folder in the baserow_data volume. # By default backs up to the backups folder in the baserow_data volume.
docker run -it --rm -v baserow_data:/baserow/data baserow/baserow:1.10.0 \ docker run -it --rm -v baserow_data:/baserow/data baserow/baserow:1.10.1 \
backend-cmd-with-db backup -f /baserow/data/backups/backup.tar.gz backend-cmd-with-db backup -f /baserow/data/backups/backup.tar.gz
# Or backup to a file on your host instead run something like: # Or backup to a file on your host instead run something like:
docker run -it --rm -v baserow_data:/baserow/data -v $PWD:/baserow/host \ docker run -it --rm -v baserow_data:/baserow/data -v $PWD:/baserow/host \
baserow/baserow:1.10.0 backend-cmd-with-db backup -f /baserow/host/backup.tar.gz baserow/baserow:1.10.1 backend-cmd-with-db backup -f /baserow/host/backup.tar.gz
``` ```
### Restore only Baserow's Postgres Database ### Restore only Baserow's Postgres Database
@ -456,7 +456,7 @@ docker run \
-p 80:80 \ -p 80:80 \
-p 443:443 \ -p 443:443 \
--restart unless-stopped \ --restart unless-stopped \
baserow/baserow:1.10.0 baserow/baserow:1.10.1
``` ```
Or you can just store it directly in the volume at `baserow_data/env` meaning it will be Or you can just store it directly in the volume at `baserow_data/env` meaning it will be
@ -465,7 +465,7 @@ loaded whenever you mount in this data volume.
### Building your own image from Baserow ### Building your own image from Baserow
```dockerfile ```dockerfile
FROM baserow/baserow:1.10.0 FROM baserow/baserow:1.10.1
# Any .sh files found in /baserow/supervisor/env/ will be sourced and loaded at startup # Any .sh files found in /baserow/supervisor/env/ will be sourced and loaded at startup
# useful for storing your own environment variable overrides. # useful for storing your own environment variable overrides.

View file

@ -1,4 +1,4 @@
ARG FROM_IMAGE=baserow/baserow:1.10.0 ARG FROM_IMAGE=baserow/baserow:1.10.1
# This is pinned as version pinning is done by the CI setting FROM_IMAGE. # This is pinned as version pinning is done by the CI setting FROM_IMAGE.
# hadolint ignore=DL3006 # hadolint ignore=DL3006
FROM $FROM_IMAGE as image_base FROM $FROM_IMAGE as image_base

View file

@ -1,6 +1,6 @@
{ {
"name": "baserow", "name": "baserow",
"version": "1.10.0", "version": "1.10.1",
"private": true, "private": true,
"description": "Baserow: open source no-code database web frontend.", "description": "Baserow: open source no-code database web frontend.",
"author": "Bram Wiepjes (Baserow)", "author": "Bram Wiepjes (Baserow)",