mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-04-16 18:07:47 +00:00
26 lines
1 KiB
Markdown
26 lines
1 KiB
Markdown
# Baserow's dev environment
|
|
|
|
The dev environment runs Baserow services with source code hot reloading enabled. It
|
|
also runs the backend django server and web-frontend nuxt server in debug and
|
|
development modes. It is recommended that you use [dev.sh](../development/dev_sh.md)
|
|
found in the root of the Baserow repo.
|
|
|
|
## Further reading
|
|
|
|
- See [running the dev environment](running-the-dev-environment.md) for a
|
|
step-by-step guide on how to set-up the dev env.
|
|
- See [baserow docker api](../reference/baserow-docker-api.md) for more detail on how
|
|
Baserow's docker setup can be used and configured.
|
|
- See [dev.sh](../development/dev_sh.md) for further detail on the CLI tool for managing
|
|
the dev environment.
|
|
|
|
## Fixing git blame
|
|
|
|
A large formatting only commit was made to the repo when we converted to use the black
|
|
auto-formatter on April, 12 2021. If you don't want to see this commit in git blame, you
|
|
can run the command below to get your local git to ignore that commit in blame for this
|
|
repo:
|
|
|
|
```bash
|
|
$ git config blame.ignoreRevsFile .git-blame-ignore-revs
|
|
```
|