GRO-BOT is a smart algae bioreactor project hub. This repository hosts the public project website and links the companion firmware and iOS app repositories as submodules.
Live site: https://stanley50z.github.io/GRO-BOT/
index.html- static project websiteimages/- website images and diagramsgro-bot-esp32/- ESP32 firmware submoduleAgTech-App/- iOS app submodule
This repository tracks the firmware and app repositories as submodules:
- ESP32 firmware: https://github.com/stanley50z/gro-bot-esp32.git
- iOS app: https://github.com/vchallans/AgTech-App.git
Clone everything with:
git clone --recurse-submodules https://github.com/stanley50z/GRO-BOT.gitIf you already cloned the repo without submodules:
git submodule update --init --recursiveThe website is deployed with GitHub Pages from the main branch using the workflow in .github/workflows/pages.yml.
The Pages workflow checks out this repository without recursively cloning submodules because the deployed site only needs the static website files. Clone with --recurse-submodules when you want the linked firmware and app source locally.