Repo Structure
Our infra-external repo intro and structure
First step is then to clone our infra-external
github repo locally and cd
into it:
This repository structure is divided into three main areas:
These areas serve as follows:
cfg/
: Contains configuration files for two environments,devnet
andmainnet
plus a shared one calledcommon
that contains shared variables that apply to both. You may want to backup this directory at least once or every time you change its content.data/
: Holds essential data files likedevnet_payer.json
andmainnet_payer.json
needed for setting up the Oracles. May be populated by other directories after setup. You may want to backup this directory at least once or every time you change its content.install/
: Includes scripts for setting up Oracles, separated intobare-metal
andcloud
environments. This directory can be ignored during backups and will change often.README.md
: it's the README file for the repo, in Markdown format.
Continue to the next section where we'll take care of the configuring files.
Last updated