You do not have to use /workspace/hello-world on your personal computer.
That path is commonly used in cloud/dev containers.
On your own machine, you can use any folder, for example:
~/workspace/hello-world(recommended)~/Documents/hello-world
So yes: if you cannot find /workspace, you can create your own workspace folder locally.
zshmkdir -p ~/workspace
cd ~/workspace
pwdYou should now see a path like /home/<you>/workspace (Linux) or /Users/<you>/workspace (macOS).
cd ~/workspace
git clone https://github.com/<your-user>/<your-repo>.git hello-world
cd hello-worldcd ~/Downloads
unzip hello-world.zip
mv hello-world ~/workspace/hello-world
cd ~/workspace/hello-worldpwd
ls -la
ls -la .gitYou should see:
Cats/scripts/README.mdIMPLEMENTATION_PACKAGE.md.git/
You can also run:
./scripts/check_repo.zsh./scripts/run_app.shOpen in browser:
http://localhost:8080/Cats/- fallback:
http://localhost:8080/Cats/index.html
In another terminal tab:
cd ~/workspace/hello-world
./scripts/test_app.shOn Linux with permission to create under root:
sudo mkdir -p /workspace
sudo chown -R "$USER":"$USER" /workspace
mkdir -p /workspace/hello-worldThen clone into it:
git clone https://github.com/<your-user>/<your-repo>.git /workspace/hello-worldIf you do not have sudo, just keep using ~/workspace/hello-world.
This command creates ~/workspace and checks whether repo exists there:
./scripts/setup_repo_folder.shOptional custom location:
./scripts/setup_repo_folder.sh ~/Documents- This is a front-end prototype with simulated sync behavior.
- Backend/database implementation details are in
IMPLEMENTATION_PACKAGE.md.