VSCode Setup
This guide walks you through a first time VScode setup for Baserow for developers. It
will ensure you can run and debug all tests and also enable all the relevant linters and
automatic style fixers to make your life as easy as possible.
This guide assumes you have a basic understanding of git, python, virtualenvs,
postgres and command line tools.
Prerequisites
Install the following tools:
- just - command runner
- uv - Python package manager
Setup Steps
- First checkout a fresh copy of Baserow:
git clone git@github.com:baserow/baserow.git
(or your personal fork of the project)
cd baserow
./config/vscode/apply_standard_baserow_vscode_config.sh
- Type
Y and hit enter to apply the standard Baserow config
- Open VSCode and on the “Welcome to VSCode” screen click the “Open” button
and open the baserow folder you cloned above.
- Make sure you have installed / enabled the Python VSCode plugin.
- Now we will create a Python virtual environment and configure VSCode to use it to run tests
and linters:
- Initialize the backend (creates venv and installs dependencies):
just b init
This creates a virtualenv at .venv/ in the project root.
- Then you will most likely need to select it as default interpreter for the project:
- Type: Ctrl + Shift + P or open the command palette
- Type: Python: select interpreter
- Find and select your virtualenvs
bin/python executable (.venv/bin/python)
- If do not see the python tests in the testing menu:
- Type: Ctrl + Shift + P or open the command palette
- Type: Python: Configure Tests
- Install and get a postgresql database running locally:
- The easiest way is to use Docker:
just dc-dev up -d db redis
- Or install PostgreSQL locally:
https://www.postgresql.org/docs/11/tutorial-install.html
- If running PostgreSQL locally, create a baserow user:
CREATE USER baserow WITH ENCRYPTED PASSWORD 'baserow';
ALTER USER baserow CREATEDB;
- Now you should be able to run the backend python tests from the testing menu, try
run
backend/tests/baserow/core/test_core_models.py for instance.
- Now lets set up your frontend dev by changing directory to
baserow/web-frontend
- Use nvm or fnm to install the correct version of
node.
To determine the version of Node.js to use, see the runtimeVersion inside the
launch.json file. E.g. if the version is v16.15.0, you can install it with:
nvm install v16.15.0 and then enable it with nvm use v16.15.0. Alternatively,
see baserow/docs/installation/supported.md to determine the supported version
of Node.js to use.
- Install
yarn globally: npm install -g yarn
- Now run
just f install to install dependencies (or yarn install directly).
- Select “Trust Project” if you see an VSCode popup after running yarn install
- If you do not see Jest tests in the testing menu:
- Type: Ctrl + Shift + P or open the command palette
- Type: Jest: Start All Runners
- Confirm you can run a web-frontend unit test from vscode
Recommended Plugins
You can use the VSC Export & Import to install what is inside config/vscode/vsc-extensions.txt.
Otherwise, you can manually install:
- Python
- Volar
- Eslint
- Gitlab Workflow
- Gitlens
- Jest
- SCSS Formatter
- Stylelint
- Mypy
- Docker
- Coverage Gutters