Last active
February 27, 2022 06:33
-
-
Save percybolmer/343b609a7f587d9b98d54dab1aa983f8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
├── /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