1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-04-06 22:08:52 +00:00

Prepare for 1 3 0

This commit is contained in:
Bram Wiepjes 2021-06-02 08:15:31 +00:00
parent 37e9ef37c0
commit 43b4e331c7
12 changed files with 20 additions and 18 deletions

View file

@ -45,7 +45,7 @@ environment via `docker-compose`. Just clone the repository, run the following c
and visit http://localhost:3000 in your browser.
```
$ git clone https://gitlab.com/bramw/baserow.git
$ git clone --branch master https://gitlab.com/bramw/baserow.git
$ cd baserow
$ docker-compose up
```
@ -61,7 +61,7 @@ Execute the following commands to start a development version of the baserow env
which has debug and hot re-loading features enabled.
```
$ git clone https://gitlab.com/bramw/baserow.git
$ git clone --branch master https://gitlab.com/bramw/baserow.git
$ cd baserow
$ docker-compose -f docker-compose.yml -f docker-compose.dev.yml up
$ # OR use our ./dev.sh script which also ensures your dev containers run as your user
@ -96,7 +96,7 @@ Created by Bram Wiepjes (Baserow) - bram@baserow.io.
Distributes under the MIT license. See `LICENSE` for more information.
Version: 1.2.0
Version: 1.3.0
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__)
REQUIREMENTS_DIR = os.path.join(PROJECT_DIR, "requirements")
VERSION = "1.2.0"
VERSION = "1.3.0"
def get_requirements(env):

View file

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

View file

@ -2,6 +2,8 @@
## Unreleased
## Released (2021-06-02)
* Fixed bug where the grid view would fail hard if a cell is selected and the component
is destroyed.
* Made it possible to import a JSON file when creating a table.

View file

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

View file

@ -18,7 +18,7 @@ RUN service supervisor stop && service nginx stop
RUN rm -f /etc/nginx/sites-enabled/*
ADD start.sh /app/code
RUN git clone https://gitlab.com/bramw/baserow.git
RUN git clone --branch master https://gitlab.com/bramw/baserow.git
RUN virtualenv -p python3 env
RUN env/bin/pip install --no-cache -r baserow/backend/requirements/base.txt
RUN (cd baserow/web-frontend && yarn install && yarn build)

View file

@ -1,11 +1,11 @@
**Build**
```
$ docker build -t registry.gitlab.com/bramw/baserow/cloudron:1.2.0 .
$ docker build -t registry.gitlab.com/bramw/baserow/cloudron:1.3.0 .
```
**Push**
```
$ docker push registry.gitlab.com/bramw/baserow/cloudron:1.2.0
$ docker push registry.gitlab.com/bramw/baserow/cloudron:1.3.0
```

View file

@ -11,7 +11,7 @@ dev environment locally, otherwise please start from the Installing Requirements
below.
```bash
$ git clone https://gitlab.com/bramw/baserow.git
$ git clone --branch master https://gitlab.com/bramw/baserow.git
$ cd baserow
$ docker-compose -f docker-compose.yml -f docker-compose.dev.yml up
$ # OR use our ./dev.sh script which also ensures your dev containers run as your user
@ -67,7 +67,7 @@ Baserow's code to your computer.
```
$ cd ~/baserow
$ git clone https://gitlab.com/bramw/baserow.git
$ git clone --branch master https://gitlab.com/bramw/baserow.git
Cloning into 'baserow'...
...
$ cd baserow

View file

@ -35,14 +35,14 @@ to your machine. This contains the Cloudron manifest file that you need when ins
the app.
```
$ git clone https://gitlab.com/bramw/baserow.git
$ git clone --branch master https://gitlab.com/bramw/baserow.git
$ cd baserow/deploy/cloudron
```
After that you can install the Baserow Cloudron app by executing the following commands.
```
$ cloudron install -l baserow.{YOUR_DOMAIN} --image registry.gitlab.com/bramw/baserow/cloudron:1.2.0
$ cloudron install -l baserow.{YOUR_DOMAIN} --image registry.gitlab.com/bramw/baserow/cloudron:1.3.0
App is being installed.
...
App is installed.
@ -67,7 +67,7 @@ First you need to figure out what your app id is. You can do so by executing the
the latest version.
```
cloudron update --app {YOUR_APP_ID} --image registry.gitlab.com/bramw/baserow/cloudron:1.2.0
cloudron update --app {YOUR_APP_ID} --image registry.gitlab.com/bramw/baserow/cloudron:1.3.0
```
> Note that you must replace the image with the most recent image of Baserow. The

View file

@ -10,7 +10,7 @@ building your own production Baserow setup.
If you are familiar with git and docker-compose run these commands to launch baserow
locally, otherwise please start from the Installing Requirements section below.
```bash
$ git clone https://gitlab.com/bramw/baserow.git
$ git clone --branch master https://gitlab.com/bramw/baserow.git
$ cd baserow
$ docker-compose up
```
@ -58,7 +58,7 @@ Baserow's code to your computer.
```
$ cd ~/baserow
$ git clone https://gitlab.com/bramw/baserow.git
$ git clone --branch master https://gitlab.com/bramw/baserow.git
Cloning into 'baserow'...
...
$ cd baserow

View file

@ -15,7 +15,7 @@ python and pip.
```
$ cd ~/baserow
$ pip install cookiecutter
$ git clone https://gitlab.com/bramw/baserow.git
$ git clone --branch master https://gitlab.com/bramw/baserow.git
Cloning into 'baserow'...
```

View file

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