mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-04-27 06:00:37 +00:00
Prepare for 1 3 0
This commit is contained in:
parent
37e9ef37c0
commit
43b4e331c7
12 changed files with 20 additions and 18 deletions
|
@ -45,7 +45,7 @@ environment via `docker-compose`. Just clone the repository, run the following c
|
||||||
and visit http://localhost:3000 in your browser.
|
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
|
$ cd baserow
|
||||||
$ docker-compose up
|
$ 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.
|
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
|
$ cd baserow
|
||||||
$ docker-compose -f docker-compose.yml -f docker-compose.dev.yml up
|
$ 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
|
$ # 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.
|
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.
|
The official repository can be found at https://gitlab.com/bramw/baserow.
|
||||||
|
|
||||||
|
|
|
@ -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.2.0"
|
VERSION = "1.3.0"
|
||||||
|
|
||||||
|
|
||||||
def get_requirements(env):
|
def get_requirements(env):
|
||||||
|
|
|
@ -212,7 +212,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.2.0",
|
"VERSION": "1.3.0",
|
||||||
"SERVE_INCLUDE_SCHEMA": False,
|
"SERVE_INCLUDE_SCHEMA": False,
|
||||||
"TAGS": [
|
"TAGS": [
|
||||||
{"name": "Settings"},
|
{"name": "Settings"},
|
||||||
|
|
|
@ -2,6 +2,8 @@
|
||||||
|
|
||||||
## Unreleased
|
## Unreleased
|
||||||
|
|
||||||
|
## Released (2021-06-02)
|
||||||
|
|
||||||
* Fixed bug where the grid view would fail hard if a cell is selected and the component
|
* Fixed bug where the grid view would fail hard if a cell is selected and the component
|
||||||
is destroyed.
|
is destroyed.
|
||||||
* Made it possible to import a JSON file when creating a table.
|
* Made it possible to import a JSON file when creating a table.
|
||||||
|
|
|
@ -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.2.0",
|
"version": "1.3.0",
|
||||||
"healthCheckPath": "/_health",
|
"healthCheckPath": "/_health",
|
||||||
"httpPort": 80,
|
"httpPort": 80,
|
||||||
"addons": {
|
"addons": {
|
||||||
|
|
|
@ -18,7 +18,7 @@ RUN service supervisor stop && service nginx stop
|
||||||
RUN rm -f /etc/nginx/sites-enabled/*
|
RUN rm -f /etc/nginx/sites-enabled/*
|
||||||
|
|
||||||
ADD start.sh /app/code
|
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 virtualenv -p python3 env
|
||||||
RUN env/bin/pip install --no-cache -r baserow/backend/requirements/base.txt
|
RUN env/bin/pip install --no-cache -r baserow/backend/requirements/base.txt
|
||||||
RUN (cd baserow/web-frontend && yarn install && yarn build)
|
RUN (cd baserow/web-frontend && yarn install && yarn build)
|
||||||
|
|
|
@ -1,11 +1,11 @@
|
||||||
**Build**
|
**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**
|
**Push**
|
||||||
|
|
||||||
```
|
```
|
||||||
$ docker push registry.gitlab.com/bramw/baserow/cloudron:1.2.0
|
$ docker push registry.gitlab.com/bramw/baserow/cloudron:1.3.0
|
||||||
```
|
```
|
||||||
|
|
|
@ -11,7 +11,7 @@ dev environment locally, otherwise please start from the Installing Requirements
|
||||||
below.
|
below.
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
$ git clone https://gitlab.com/bramw/baserow.git
|
$ git clone --branch master https://gitlab.com/bramw/baserow.git
|
||||||
$ cd baserow
|
$ cd baserow
|
||||||
$ docker-compose -f docker-compose.yml -f docker-compose.dev.yml up
|
$ 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
|
$ # 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
|
$ cd ~/baserow
|
||||||
$ git clone https://gitlab.com/bramw/baserow.git
|
$ git clone --branch master https://gitlab.com/bramw/baserow.git
|
||||||
Cloning into 'baserow'...
|
Cloning into 'baserow'...
|
||||||
...
|
...
|
||||||
$ cd baserow
|
$ cd baserow
|
||||||
|
|
|
@ -35,14 +35,14 @@ to your machine. This contains the Cloudron manifest file that you need when ins
|
||||||
the app.
|
the app.
|
||||||
|
|
||||||
```
|
```
|
||||||
$ git clone https://gitlab.com/bramw/baserow.git
|
$ git clone --branch master https://gitlab.com/bramw/baserow.git
|
||||||
$ cd baserow/deploy/cloudron
|
$ 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 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 being installed.
|
||||||
...
|
...
|
||||||
App is 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.
|
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
|
> Note that you must replace the image with the most recent image of Baserow. The
|
||||||
|
|
|
@ -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
|
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.
|
locally, otherwise please start from the Installing Requirements section below.
|
||||||
```bash
|
```bash
|
||||||
$ git clone https://gitlab.com/bramw/baserow.git
|
$ git clone --branch master https://gitlab.com/bramw/baserow.git
|
||||||
$ cd baserow
|
$ cd baserow
|
||||||
$ docker-compose up
|
$ docker-compose up
|
||||||
```
|
```
|
||||||
|
@ -58,7 +58,7 @@ Baserow's code to your computer.
|
||||||
|
|
||||||
```
|
```
|
||||||
$ cd ~/baserow
|
$ cd ~/baserow
|
||||||
$ git clone https://gitlab.com/bramw/baserow.git
|
$ git clone --branch master https://gitlab.com/bramw/baserow.git
|
||||||
Cloning into 'baserow'...
|
Cloning into 'baserow'...
|
||||||
...
|
...
|
||||||
$ cd baserow
|
$ cd baserow
|
||||||
|
|
|
@ -15,7 +15,7 @@ python and pip.
|
||||||
```
|
```
|
||||||
$ cd ~/baserow
|
$ cd ~/baserow
|
||||||
$ pip install cookiecutter
|
$ pip install cookiecutter
|
||||||
$ git clone https://gitlab.com/bramw/baserow.git
|
$ git clone --branch master https://gitlab.com/bramw/baserow.git
|
||||||
Cloning into 'baserow'...
|
Cloning into 'baserow'...
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "baserow",
|
"name": "baserow",
|
||||||
"version": "1.2.0",
|
"version": "1.3.0",
|
||||||
"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)",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue