-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(cca): fix dropdrown and improve msg
- Loading branch information
1 parent
9906666
commit cd2f6bc
Showing
4 changed files
with
22 additions
and
5 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
# Templates | ||
|
||
The template is based on Cosmology's [chain-admin template](https://github.com/cosmology-tech/create-cosmos-app/tree/fd87039feee9568a86aa8d8d19edea8f4a78f599/templates/chain-template) at commit `fd87039feee9568a86aa8d8d19edea8f4a78f599`. | ||
The template is based on Cosmology's [chain-template](https://github.com/cosmology-tech/create-cosmos-app/tree/fd87039feee9568a86aa8d8d19edea8f4a78f599/templates/chain-template) at commit `fd87039feee9568a86aa8d8d19edea8f4a78f599`. | ||
|
||
Some modifications have been done to make it work nicer with Ignite scaffolded chains. | ||
An exhaustive list of changes compared to the original template can be found [here](./ignite-chain-admin.patch). | ||
An exhaustive list of changes compared to the original template can be found [here](./ignite-chain-template.patch). | ||
|
||
## Development Instructions | ||
|
||
When upgrading the templates: | ||
|
||
- checkout `github.com/cosmology-tech/create-cosmos-app` at the above mentioned commit. | ||
- apply the git patch to the `chain-template` directory (`git apply ignite-chain-admin.patch`) | ||
- apply the git patch to the `chain-template` directory (`git apply ignite-chain-template.patch`) | ||
- merge upstream changes from main | ||
- commit the changes (as a single commit, rewriting history if necessary -- `git reset $(git merge-base main $(git branch --show-current))`) | ||
- export the changes to a patch file (`git diff main > ignite-chain-admin.patch`) | ||
- export the changes to a patch file (`git diff main > ignite-chain-template.patch`) |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,6 +16,9 @@ module.exports = { | |
{ | ||
hostname: 'raw.githubusercontent.com', | ||
}, | ||
{ | ||
hostname: 'ignite.com', | ||
} | ||
], | ||
}, | ||
}; |