1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-04-15 09:34:13 +00:00
No description
Find a file
2019-06-07 13:04:24 +02:00
old-web-frontend created empty nuxt project and moved assets there 2019-06-07 13:04:24 +02:00
web-frontend created empty nuxt project and moved assets there 2019-06-07 13:04:24 +02:00
.editorconfig created empty nuxt project and moved assets there 2019-06-07 13:04:24 +02:00
.gitignore created empty nuxt project and moved assets there 2019-06-07 13:04:24 +02:00
.gitlab-ci.yml created empty nuxt project and moved assets there 2019-06-07 13:04:24 +02:00
docker-compose.yml created empty nuxt project and moved assets there 2019-06-07 13:04:24 +02:00
Dockerfile added web-frontend webpack environment 2019-02-15 14:52:44 +01:00
Makefile added web-frontend webpack environment 2019-02-15 14:52:44 +01:00
README.md created empty nuxt project and moved assets there 2019-06-07 13:04:24 +02:00

Baserow

To first start Baserow make sure you have installed docker and docker-compose. After that execute the following commands.

$ docker network create baserow_default
$ docker-compose up -d

In order to start developing for the web frontend you need to execute the following commands.

# install web frontend dependencies
$ docker exec -it baserow bash
$ cd /baserow/web-frontend
$ yarn install
$ yarn run dev

# build for production and launch server
$ yarn run build
$ yarn start

# generate static project
$ yarn run generate

# lint
$ yarn run eslint
$ yarn run stylelint

# test
$ yarn run test

When the development server starts you can visit http://localhost:3000.