1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-04-11 16:01:20 +00:00

downgraded Twister dependency to prevent failing uvicorn

This commit is contained in:
Bram Wiepjes 2021-03-01 23:46:01 +01:00
parent 4ba8611116
commit fc126f4c08
7 changed files with 8 additions and 7 deletions
README.md
backend
requirements
setup.py
src/baserow/config/settings
deploy/cloudron
docs/guides/installation
web-frontend

View file

@ -109,7 +109,7 @@ Created by Bram Wiepjes (Baserow) - bram@baserow.io.
Distributes under the MIT license. See `LICENSE` for more information.
Version: 1.0.0
Version: 1.0.1
The official repository can be found at https://gitlab.com/bramw/baserow.

View file

@ -6,6 +6,7 @@ psycopg2==2.8.4
mysqlclient==1.4.6
ipython==7.13.0
Faker==4.0.2
Twisted==20.3.0
gunicorn==20.0.4
uvicorn[standard]==0.13.3
django-mjml==0.9.0

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.0.0'
VERSION = '1.0.1'
def get_requirements(env):

View file

@ -182,7 +182,7 @@ SPECTACULAR_SETTINGS = {
'name': 'MIT',
'url': 'https://gitlab.com/bramw/baserow/-/blob/master/LICENSE'
},
'VERSION': '1.0.0',
'VERSION': '1.0.1',
'SERVE_INCLUDE_SCHEMA': False,
'TAGS': [
{'name': 'Settings'},

View file

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

View file

@ -38,7 +38,7 @@ $ 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.0.0
$ cloudron install -l baserow.{YOUR_DOMAIN} --image registry.gitlab.com/bramw/baserow/cloudron:1.0.1
App is being installed.
...
App is installed.
@ -58,7 +58,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.0.0
cloudron update --app {YOUR_APP_ID} --image registry.gitlab.com/bramw/baserow/cloudron:1.0.1
```
> Note that you must replace the image with the most recent image of Baserow. The

View file

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