Project Configuration

Learn everything about Velocitas project configuration.

Every Vehicle App repo comes with a .velocitas.json which is the project configuration of your app. It holds references to the packages and their respective versions you are using in your project.

Here is an example of this configuration:

{
  "packages": [
    {
      "name": "devenv-devcontainer-setup",
      "version": "v1.0.0"
    },
    {
      "name": "devenv-runtimes",
      "version": "v1.0.0"
    }
  ],
  "variables": {
    "foo": "bar",
    "baz": 2
  }
}

More detailed information and explanation about the project configuration and fields of the .velocitas.json can be found here .

Next steps