Submitted Websites
Loading website list...
How To Add Yours
GitHub workflow for students:
Fork the starter repo: github.com/kidino/pokemon-website .
Clone your fork to your computer.
Switch to main , pull latest changes, then create a new branch from main for your change.
Edit websites.json , then git add, git commit, and git push.
Open your fork on GitHub and click Compare & pull request .
Set destination/base to kidino/pokemon-website:main , then submit your pull request.
Edit websites.json and add your object to the array:
[
{
"name": "Your Name",
"url": "https://your-pokemon-site.example"
}
]
Example commands:
git clone https://github.com/<your-username>/pokemon-website.git
cd pokemon-website
git checkout main
git pull origin main
git checkout -b add-my-site
# edit websites.json
git add websites.json
git commit -m "Add my Pokemon website"
git push -u origin add-my-site