var img = document.createElement('img'); img.src = "https://terradocs.matomo.cloud//piwik.php?idsite=2&rec=1&url=https://feather.terra.money" + location.pathname; img.style = "border:0"; img.alt = "tracker"; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(img,s);
Skip to main content

5. Push To GitHub

In order for Validators to see your chain source code, you will need to store it in a public repo with the exact same repo name passed to the feather dev scaffold command.

Create repository​

If you have GitHub CLI installed, run the following to create the repo:


# Login if not already done so
gh auth login
# Create the repo
gh repo create <repo_name> --public

Alternatively, you may also use the GitHub website.

Push to the created repository​

The following commands might differ depending on whether the remote was already set or not.


# Commit all file changes
git add . && git commit -m "..."
# Push to the remote
git push