-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwatod-config.sh
41 lines (32 loc) · 1.6 KB
/
watod-config.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
## ----------------------- watod Configuration File Override ----------------------------
##
## HINT: You can copy the contents of this file to a watod-config.local.sh
## file that is untrackable by git and readable by watod.
##
## ----------------------- watod Configuration File Override ----------------------------
## ACTIVE Modules CONFIGURATION
## List of active modules to run, defined in docker-compose.yaml.
##
## Possible values:
## - vis_tools : starts tools for data visualization (foxglove)
## - sim : starts robot simulator
## - robot : starts up robot nodes
## - samples : starts up sample nodes for reference
ACTIVE_MODULES="vis_tools sim"
################################# MODE OF OPERATION #################################
## Possible modes of operation when running watod.
## Possible values:
## - deploy (default) : runs production-grade containers (non-editable)
## - develop : runs developer containers (editable)
MODE_OF_OPERATION="develop"
############################## ADVANCED CONFIGURATIONS ##############################
## Name to append to docker containers. DEFAULT = "<your_watcloud_username>"
# COMPOSE_PROJECT_NAME=""
## Tag to use. Images are formatted as <IMAGE_NAME>:<TAG> with forward slashes replaced with dashes.
## DEFAULT = "<your_current_github_branch>"
# TAG=""
# Docker Registry to pull/push images. DEFAULT = "ghcr.io/watonomous/wato_monorepo"
# REGISTRY_URL=""
## Platform in which to build the docker images with.
## Either arm64 (apple silicon, raspberry pi) or amd64 (most computers)
# PLATFORM="amd64"