Je build Netlify CMS ktery si muzes pomoci git submodules pripojit k tvemu webu.
- udelej si branch teto repository pojmenovanou, aby bylo jasne, kteremu webu patri (napr. jihocesky)
git branch jihocesky
- pokud nutne potrebujes nejake extra kolekce nebo jine extra veci, uprav si config.yml
- uprav si index.html k obrazu svemu (napr. takto)
- pushni branch
git push origin jihocesky
- pripoj si branch ke svemu webu:
cd <tam, kde mas vyclonovanou repo s webem>
git submodule add https://github.com/pirati-web/admin admin
# checkout your branch
cd admin
git checkout jihocesky
cd ..
- pushni zmeny (pripojeny submodul)
git add admin
git commit -m "admin submodule added"
git push origin gh-pages