Skip to content

Dev Set-Up

GitHub Codespaces

We highly recommend you use our ready-made “1 click” Web/Cloud IDE set-up.

Development Environment in a Docker Container

Because it can be a PITA to install all required tools, especially on non-Linux platforms, this project comes with a containerized (“Docker”) development environment, which you can use like this:

  1. Get the source code:

    git clone https://github.com/enola-dev/enola.git
    cd enola
    
  2. Build and enter (prompt) the Dev. Env. container, which includes all required tools, but with the source code “local / on host” mounted:

    ./devenv.bash
    
  3. (You’re now in the container.) Run the Enola CLI, built from source:

    ./enola
    
  4. (You’re still in the container.) Build everything and run the tests:

    ./test.bash
    

When tests ran fully successfully, then a .git/hooks/pre-commit that’s useful for development is installed.

Documentation Writing

To work on documentation, launch:

  • tools/docs/serve-quick.bash for hot reloading live refresh, which is great while writing (even though it has some limitations)
  • tools/docs/serve-build.bash for a “real” (full) docs build, without without the demo “screen cast” recordings (which are slow)
  • tools/docs/serve.bash for generating the “real” (full) static site/ exactly as it’s deployed on https://docs.enola.dev

Flox

Please install Flox.dev to work locally on this project, using its virtual development environment.

This project’s build scripts do not assume that Flox (Nix) is “activated” in your shell; they do this by themselves. So once you have flox available on your PATH, launching e.g. ./test.bash should “just work” (please feel free to raise a bug if it does not).

To directly use tools installed into the Flox virtual development environment from your shell (instead of indirectly, via the build scripts of this project), activate it in your shell using something like this, or e.g. eval ... (or ...| source for Fish) as described here. (We recommend this approach, instead of just using the alternative flox activate, like Flox documentation suggests elsewhere, because it might preserve your own personal fancy shell customizations better - especially if you don’t have $SHELL or $FLOX_SHELL set up correctly for an altnernative shell.)

TODO In IDEs? Like https://mise.jdx.dev/ide-integration.html#ide-plugins

Manual Tools Installation

Setup is in flux, with flox!

This project is in the process of adopting https://flox.dev. The following is out of date!

If you do still want to try, here’s how to manually install what the development environment container comes built-in with:

  1. Install Java Development Kit (JDK), same version as in .bazelrc. There are different Java (like Linux) “distributions” (all based on OpenJDK). The easiest way to install one of them is typically to use your OS’ package manager:
    sudo apt-get install openjdk-21-jdk openjdk-21-doc openjdk-21-source
    

An alternative is to use e.g. the SDKMAN! If you work on several projects using different Java versions, then we recommend using something like jEnv (with .java-version), or asdf (with .tool-versions), or direnv (with .envrc).

  1. Install C/C++ etc. (it’s required by the Proto rule for Bazel), e.g. do:

    sudo apt-get install build-essential
    
  2. Install Python venv (it’s used by the presubmit and docs site generation), e.g. with:

    sudo apt-get install python3-venv
    
  3. Install Bazelisk (NOT Bazel), on a (recent enough…) Debian/Ubuntu with Go e.g. like this (or some more manual equivalent):

    sudo apt update
    sudo apt install golang-go
    go install github.com/bazelbuild/bazelisk@latest
    

You should now be able to proceed as above (but without requiring Docker).

Clean Up

Use Flox and do not do pip install -r requirements.txt outside of the virtual environment!

In case of errors such as ModuleNotFoundError: No module named 'pre_commit', try wiping the cache of https://pre-commit.com:

rm -rf ~/.cache/pre-commit/

In cases like ImportError: cannot import name '...' from '...', maybe try wiping the user (non-venv) Python libs:

rm -rf ~/.local/lib/python*

For “cannot parse .renovaterc.json5 because support is missing for json5” from pre-commit run --all-files you may have to:

rm -rf ~/.cache/pre-commit/
rm -rf .flox/cache/python/
flox activate
pip install -r requirements.txt

But if you are correctly in Flox’s virtual environment, there should normally be no need for any this.

Further Reading

You can now read more about:

Was this page helpful?