feat(skills/local-places): add server as submodule

- Links to Hyaxia/local_places for easy upstream updates
- Updated SKILL.md with {baseDir}/server path

🦞
This commit is contained in:
Peter Steinberger
2026-01-02 15:47:42 +00:00
parent 6b7484a885
commit 100a022ab7
3 changed files with 8 additions and 1 deletions

3
.gitmodules vendored
View File

@@ -2,3 +2,6 @@
path = Peekaboo
url = https://github.com/steipete/Peekaboo.git
branch = main
[submodule "skills/local-places/server"]
path = skills/local-places/server
url = https://github.com/Hyaxia/local_places.git

View File

@@ -12,11 +12,14 @@ Search for nearby places using a local Google Places API proxy. Two-step flow: r
## Setup
```bash
cd ~/Projects/local_places
cd {baseDir}/server
echo "GOOGLE_PLACES_API_KEY=your-key" > .env
uv venv && uv pip install -e ".[dev]"
uv run --env-file .env uvicorn local_places.main:app --host 127.0.0.1 --port 8000
```
Requires `GOOGLE_PLACES_API_KEY` in `.env` or environment.
Server code is in `{baseDir}/server/` (submodule from Hyaxia/local_places).
## Quick Start