Skip to content

Commit d311aec

Browse files
authored
Update README and replace GitLab with GitHub (baserow#4091)
1 parent 872520a commit d311aec

39 files changed

+104
-95
lines changed

.gitlab/merge_request_templates/default.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
- [ ] A changelog entry has been added to `changelog/entries/unreleased` using `changelog/src/changelog.py`
1010
- [ ] New/updated **Premium/Enterprise features** are separated correctly in the premium or enterprise folder
1111
- [ ] The latest **Chrome and Firefox** have been used to test any new frontend features
12-
- [ ] [Documentation](https://gitlab.com/baserow/baserow/-/tree/develop/docs) has been
12+
- [ ] [Documentation](https://github.com/baserow/baserow/blob/develop/docs) has been
1313
updated
1414
- [ ] [Quality Standards](https://gitlab.com/baserow/baserow/-/blob/develop/CONTRIBUTING.md#quality-standards)
1515
are met

CONTRIBUTING.md

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@ get back to you as soon as possible with proposed issues.
1010
## We develop with GitLab
1111

1212
We use GitLab to host code, to track issues and to make feature requests. The official
13-
repository can be found on https://gitlab.com/baserow/baserow/. There is a mirror
14-
repository on GitHub, but this is not the official one.
13+
repository can be found on https://github.com/baserow/baserow/.
1514

1615
## The merge request process
1716

@@ -49,10 +48,9 @@ project. Feel free to contact us if that is a concern.
4948

5049
## Bug reports
5150

52-
We use GitLab issues to track public bugs. You can report a bug by opening a new issue
53-
at https://gitlab.com/baserow/baserow/-/issues and selecting the Bug issue type. You may
54-
also send the bug to us via email or via the contact form at https://baserow.io/contact
55-
instead if you prefer.
51+
We use GitHub issues to track public bugs. You can report a bug by opening a new issue
52+
at https://github.com/baserow/baserow/issues and selecting the Bug issue type. You may
53+
also reach out to us via the community on https://community.baserow.io.
5654

5755
**Great Bug Reports** tend to have:
5856

README.md

Lines changed: 30 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,42 +1,55 @@
1-
## Baserow is an open-source no-code database tool and an Airtable alternative.
1+
## Baserow is an open-source no-code platform and the best alternative to Airtable
22

3-
Create your own online database without technical experience. Our user-friendly no-code
4-
tool gives you the powers of a developer without leaving your browser.
3+
It lets you easily build databases, applications, automations, and dashboards — all in
4+
one secure, self-hostable environment. Empower your team to create powerful tools
5+
without writing a single line of code.
56

67
* A spreadsheet database hybrid combining ease of use and powerful data organization.
8+
* Create applications and portals, and publish them on your own domain.
9+
* Automate repetitive workflows with automations (coming soon).
10+
* Visualize your data with dashboards.
711
* Easily self-hosted with no storage restrictions or sign-up on https://baserow.io to
812
get started immediately.
9-
* Alternative to Airtable.
13+
* Best Alternative to Airtable.
1014
* Open-core with all non-premium and non-enterprise features under
1115
the [MIT License](https://choosealicense.com/licenses/mit/) allowing commercial and
1216
private use.
1317
* Headless and API first.
1418
* Uses popular frameworks and tools like [Django](https://www.djangoproject.com/),
1519
[Vue.js](https://vuejs.org/) and [PostgreSQL](https://www.postgresql.org/).
1620

17-
[![Deploy to Heroku](https://www.herokucdn.com/deploy/button.svg)](https://www.heroku.com/deploy/?template=https://github.com/bram2w/baserow/tree/master)
21+
[![Deploy to Heroku](https://www.herokucdn.com/deploy/button.svg)](https://www.heroku.com/deploy/?template=https://github.com/baserow/baserow/tree/master)
1822

1923
```bash
2024
docker run -v baserow_data:/baserow/data -p 80:80 -p 443:443 baserow/baserow:1.35.3
2125
```
2226

23-
![Baserow screenshot](docs/assets/screenshot.png "Baserow screenshot")
27+
![Baserow database screenshot](docs/assets/screenshot.png "Baserow database screenshot")
2428

25-
## Get Involved
29+
![Baserow form screenshot](docs/assets/screenshot_form.png "Baserow form view screenshot")
30+
31+
![Baserow kanban screenshot](docs/assets/screenshot_kanban.png "Baserow kanban view screenshot")
32+
33+
![Baserow application builder](docs/assets/screenshot_application_builder.png "Baserow application builder screenshot")
2634

27-
**We're hiring remotely**! More information at https://baserow.io/jobs.
35+
![Baserow application builder](docs/assets/screenshot_automations.png "Baserow automations screenshot")
36+
(coming soon)
37+
38+
39+
## Get Involved
2840

2941
Join our forum at https://community.baserow.io/. See
3042
[CONTRIBUTING.md](./CONTRIBUTING.md) on how to become a contributor.
3143

3244
## Installation
3345

3446
* [**Docker**](docs/installation/install-with-docker.md)
35-
* [**Ubuntu**](docs/installation/install-on-ubuntu.md)
47+
* [**Helm**](docs/installation/install-with-helm.md)
3648
* [**Docker Compose** ](docs/installation/install-with-docker-compose.md)
3749
* [**Heroku**: Easily install and scale up Baserow on Heroku.](docs/installation/install-on-heroku.md)
3850
* [**Render**: Easily install and scale up Baserow on Render.](docs/installation/install-on-render.md)
3951
* [**Digital Ocean**: Easily install and scale up Baserow on Digital Ocean.](docs/installation/install-on-digital-ocean.md)
52+
* [**AWS**: Install in a scalable way on AWS](docs/installation/install-on-aws.md)
4053
* [**Cloudron**: Install and update Baserow on your own Cloudron server.](docs/installation/install-on-cloudron.md)
4154
* [**Railway**: Install Baserow via Railway.](docs/installation/install-on-railway.md)
4255
* [**Elestio**: Fully managed by Elestio.](https://elest.io/open-source/baserow)
@@ -48,20 +61,12 @@ or [here](./docs/index.md) inside the repository. The API docs can be found here
4861
https://api.baserow.io/api/redoc/ or if you are looking for the OpenAPI schema here
4962
https://api.baserow.io/api/schema.json.
5063

51-
## Become a sponsor
52-
53-
If you would like to get new features faster, then you might want to consider becoming a
54-
sponsor. By becoming a sponsor we can spend more time on Baserow which means faster
55-
development.
56-
57-
[Become a GitHub Sponsor](https://github.com/sponsors/bram2w)
58-
5964
## Development environment
6065

6166
If you want to contribute to Baserow you can setup a development environment like so:
6267

6368
```
64-
$ git clone https://gitlab.com/baserow/baserow.git
69+
$ git clone https://github.com/baserow/baserow.git
6570
$ cd baserow
6671
$ ./dev.sh --build
6772
```
@@ -75,6 +80,12 @@ found
7580
at [https://baserow.io/docs/development/development-environment](./docs/development/development-environment.md)
7681
.
7782

83+
## Why Baserow?
84+
85+
Unlike proprietary tools like Airtable, Baserow gives you **full data ownership**,
86+
**infinite scalability**, and **no vendor lock-in** — all while keeping the simplicity
87+
of a spreadsheet interface.
88+
7889
## Plugin development
7990

8091
Because of the modular architecture of Baserow it is possible to create plugins. Make
@@ -91,7 +102,7 @@ Distributes under the MIT license. See `LICENSE` for more information.
91102

92103
Version: 1.35.3
93104

94-
The official repository can be found at https://gitlab.com/baserow/baserow.
105+
The official repository can be found at https://github.com/baserow/baserow.
95106

96107
The changelog can be found [here](./changelog.md).
97108

app.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "Baserow",
33
"description": "Open source online no-code database and Airtable alternative. More information about persistent files on S3, scaling and installing a custom domain can be found on https://baserow.io/docs/guides/installation/install-on-heroku. Note that it might take a couple of minutes to deploy the app, so please be patient.",
4-
"repository": "https://gitlab.com/baserow/baserow",
4+
"repository": "https://github.com/baserow/baserow",
55
"keywords": ["baserow", "no-code", "database", "airtable"],
66
"logo": "https://baserow.io/img/favicon_192.png",
77
"success_url": "/",

backend/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ classifiers = []
1818

1919
[project.urls]
2020
Homepage = "https://baserow.io"
21-
"Bug Tracker" = "https://gitlab.com/baserow/baserow/-/issues/"
21+
"Bug Tracker" = "https://github.com/baserow/baserow/issues/"
2222
Documentation = "https://baserow.io/user-docs"
2323
Support = "https://community.baserow.io/"
24-
Changelog = "https://gitlab.com/baserow/baserow/-/issues/"
24+
Changelog = "https://github.com/baserow/baserow/blob/develop/changelog.md"
2525

2626

2727
[project.scripts]

backend/src/baserow/config/settings/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -456,7 +456,7 @@
456456
"CONTACT": {"url": "https://baserow.io/contact"},
457457
"LICENSE": {
458458
"name": "MIT",
459-
"url": "https://gitlab.com/baserow/baserow/-/blob/master/LICENSE",
459+
"url": "https://github.com/baserow/baserow/blob/develop/LICENSE",
460460
},
461461
"VERSION": "1.35.3",
462462
"SERVE_INCLUDE_SCHEMA": False,

deploy/all-in-one/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,16 +22,16 @@ docker run -v baserow_data:/baserow/data -p 80:80 -p 443:443 baserow/baserow:1.3
2222

2323
* **Maintained By**: [baserow.io](https://baserow.io/contact)
2424
* **Get Support At**: [The Baserow Community Forums](https://community.baserow.io)
25-
* **Source Code Available At**: [gitlab.com/baserow/baserow](https://gitlab.com/baserow/baserow)
25+
* **Source Code Available At**: [github.com/baserow/baserow](https://github.com/baserow/baserow)
2626
* **Docs At**: [baserow.io/docs](https://baserow.io/docs)
2727
* **License**: Open-Core with all non-premium and non-enterprise code under the MIT
2828
license.
2929

3030
## Supported tags and Dockerfile Links
3131

32-
* [`X.Y.Z`](https://gitlab.com/baserow/baserow/-/blob/master/deploy/all-in-one/Dockerfile)
32+
* [`X.Y.Z`](https://github.com/baserow/baserow/blob/master/deploy/all-in-one/Dockerfile)
3333
Tagged by Baserow version.
34-
* [`latest`](https://gitlab.com/baserow/baserow/-/blob/master/deploy/all-in-one/Dockerfile)
34+
* [`latest`](https://github.com/baserow/baserow/blob/master/deploy/all-in-one/Dockerfile)
3535
* [`develop-latest`](https://gitlab.com/baserow/baserow/-/blob/develop/deploy/all-in-one/Dockerfile)
3636
This is a bleeding edge image from our development branch, use at your own risk.
3737

deploy/cloudron/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,16 +22,16 @@ guide for more details.
2222

2323
* **Maintained By**: [baserow.io](https://baserow.io/contact)
2424
* **Get Support At**: [The Baserow Community Forums](https://community.baserow.io)
25-
* **Source Code Available At**: [gitlab.com/baserow/baserow](https://gitlab.com/baserow/baserow)
25+
* **Source Code Available At**: [github.com/baserow/baserow](https://github.com/baserow/baserow)
2626
* **Docs At**: [baserow.io/docs](https://baserow.io/docs)
2727
* **License**: Open-Core with all non-premium and non-enterprise code under the MIT
2828
license.
2929

3030
## Supported tags and Dockerfile Links
3131

32-
* [`X.Y.Z`](https://gitlab.com/baserow/baserow/-/blob/master/deploy/cloudron/Dockerfile)
32+
* [`X.Y.Z`](https://github.com/baserow/baserow/blob/master/deploy/cloudron/Dockerfile)
3333
Tagged by Baserow version.
34-
* [`latest`](https://gitlab.com/baserow/baserow/-/blob/master/deploy/cloudron/Dockerfile)
34+
* [`latest`](https://github.com/baserow/baserow/blob/master/deploy/cloudron/Dockerfile)
3535
* [`develop-latest`](https://gitlab.com/baserow/baserow/-/blob/develop/deploy/cloudron/Dockerfile)
3636
This is a bleeding edge image from our development branch, use at your own risk.
3737

deploy/helm/baserow/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: The open platform to create scalable databases and applications—w
44
type: application
55
version: 1.0.35
66
appVersion: "1.35.3"
7-
home: https://gitlab.com/baserow/baserow/-/tree/develop/deploy/helm/baserow?ref_type=heads
7+
home: https://github.com/baserow/baserow/blob/develop/deploy/helm/baserow?ref_type=heads
88
icon: https://baserow.io/img/favicon_192.png
99
sources:
1010
- https://gitlab.com/baserow/baserow
@@ -77,5 +77,5 @@ annotations:
7777
- name: source
7878
url: https://gitlab.com/baserow/baserow
7979
- name: helm
80-
url: https://gitlab.com/baserow/baserow/-/tree/develop/deploy/helm/baserow?ref_type=heads
80+
url: https://github.com/baserow/baserow/blob/develop/deploy/helm/baserow?ref_type=heads
8181
artifacthub.io/quality: production

deploy/standalone/BACKEND_README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ guide for more details.
3030

3131
## Supported tags and Dockerfile Links
3232

33-
* [`X.Y.Z`](https://gitlab.com/baserow/baserow/-/blob/master/deploy/web-frontend/Dockerfile)
33+
* [`X.Y.Z`](https://github.com/baserow/baserow/blob/master/backend/Dockerfile)
3434
Tagged by Baserow version.
35-
* [`latest`](https://gitlab.com/baserow/baserow/-/blob/master/backend/Dockerfile)
35+
* [`latest`](https://github.com/baserow/baserow/blob/master/backend/Dockerfile)
3636
* [`develop-latest`](https://gitlab.com/baserow/baserow/-/blob/develop/backend/Dockerfile)
3737
This is a bleeding edge image from our development branch, use at your own risk.

0 commit comments

Comments
 (0)