Skip to content

Instantly share code, notes, and snippets.

@percybolmer
Last active February 27, 2022 06:33
Show Gist options
  • Save percybolmer/343b609a7f587d9b98d54dab1aa983f8 to your computer and use it in GitHub Desktop.
Save percybolmer/343b609a7f587d9b98d54dab1aa983f8 to your computer and use it in GitHub Desktop.
├── /app/
│ ├── main.go # the place where you will put the worker service code
│ ├── go.mod # the go module delaraction
│ ├── go.sum # the go sum with versions
├── /cadence/ # All Related Cadence stuff goes here
│ ├── /data/ #
| | └── /mysql/ # The folder mounted onto the Docker to persist data for Mysql
| | └── /prometheus/ # The folder mounted onto the Docker to persist data for Prometheus
│ ├── /prometheus/ # Folder related to Prometheus
| | └── prometheus.yml # Prometheus config file
| | └── prometheus_config_multicluster.yml # Prometheus config file for multi clusters
│ └── docker-compose.yml # Your docker-compose selected from the Cadence repo based on your persistent storage
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment