1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-02-05 21:39:51 +00:00
No description
Find a file
Bram Wiepjes c94fd857ef Merge branch '94-fix-wrong-client-instance-bug' into 'master'
Resolve "Fix wrong client instance bug"

See merge request bramw/baserow!49
2020-05-20 14:41:50 +00:00
backend fixed wrong client error 2020-05-20 15:50:14 +02:00
web-frontend fixed wrong client error 2020-05-20 15:50:14 +02:00
.editorconfig created vue login and register pages with validation only 2019-06-10 16:58:28 +02:00
.gitignore fixed setup 2020-04-10 15:10:32 +02:00
.gitlab-ci.yml fixed setup 2020-04-10 15:10:32 +02:00
docker-compose.demo.yml Resolve "Fix sandbox environment" 2020-04-03 15:01:47 +00:00
docker-compose.yml fixed setup 2020-04-10 15:10:32 +02:00
README.md fixed setup 2020-04-10 15:10:32 +02:00
start_osx.sh Resolve "Manage rows and grid data" 2020-03-24 19:22:34 +00:00
stop_osx.sh made it possible to manage groups in the app 2019-08-26 17:49:28 +00:00

Baserow

Open source data collaboration platform.

The complete toolchain for collaborating on any kind of data. One tool. Any device. Open Source. Extendible. And were just getting started.

Try out a demo

If you just want to try out Baserow you can easily start a demo environment via docker-compose. Just run the command following command and visit http://localhost:3000 in your browser

$ docker network create baserow_demo_default
$ docker-compose -f docker-compose.demo.yml up

Core development

If you want to setup the development environment for core Baserow development you have to execute the following commands to start the backend part. Note that the sandbox container might have a different name like backend_1.

$ docker network create baserow_default
$ docker-compose up -d
$ docker exec -it backend bash
$ python src/baserow/manage.py migrate
$ python src/baserow/manage.py runserver 0.0.0.0:8000

In order to start the web-frontend environment you may execute the following commands. Note that the sandbox container might have a different name like web-frontend_1.

$ docker network create baserow_default
$ docker exec -it web-frontend bash
$ yarn install
$ yarn dev

Now you'll have the Baserow development environment running. Visit http://localhost:3000 in your browser and you should see a working version in development mode.