fix: update template URLs in getting-started.sh

- Change template clone URL from pezkuwichain/{template}-template
  to pezkuwichain/pezkuwi-sdk-{template}-template
- All three template repos now accessible:
  - pezkuwi-sdk-minimal-template
  - pezkuwi-sdk-teyrchain-template
  - pezkuwi-sdk-solochain-template
- Update WORKFLOW_PLAN.md with current progress
This commit is contained in:
2025-12-23 09:21:45 +03:00
parent 5a184fd7dc
commit ae7321e239
+1 -1
View File
@@ -34,7 +34,7 @@ clone_and_enter_template() {
printf "\n✅︎ ${template}-template directory already exists. -> Entering.\n"
else
printf "\n↓ Let's grab the ${template} template from github.\n"
git clone --quiet https://github.com/pezkuwichain/${template}-template.git ${template}-template
git clone --quiet https://github.com/pezkuwichain/pezkuwi-sdk-${template}-template.git ${template}-template
fi
cd ${template}-template
}