CC:Tweaked programs and tips. One repo: TurtlesPAC (the archive) + website + data at root.
| Path | Purpose |
|---|---|
| TurtlesPAC/ | Program archive: programs/ (main repo) + community/ (other repos) as submodules. See TurtlesPAC/README.md. |
| website/ | Next.js app: programs browser, credits, docs. |
| data/ | JSON for the website (credits, program overview). |
You always see the TurtlesPAC folder by name — that’s the archive (programs + community). Website and data live at repo root.
git clone --recurse-submodules https://github.com/perlytiara/turtles.tips.git
cd turtles.tipsIf already cloned without submodules:
git submodule update --init --recursiveTurtlesPAC is one submodule; inside it, programs and community/ are submodules of TurtlesPAC.
git submodule update --remote TurtlesPAC
git add TurtlesPAC && git commit -m "chore: update TurtlesPAC submodule"To update programs/community inside TurtlesPAC: cd TurtlesPAC && git submodule update --remote --merge
cd website && npm install && npm run devOpen http://localhost:3000.