feat(skills/local-places): add server as submodule
- Links to Hyaxia/local_places for easy upstream updates
- Updated SKILL.md with {baseDir}/server path
🦞
main
parent
6b7484a885
commit
100a022ab7
|
|
@ -2,3 +2,6 @@
|
||||||
path = Peekaboo
|
path = Peekaboo
|
||||||
url = https://github.com/steipete/Peekaboo.git
|
url = https://github.com/steipete/Peekaboo.git
|
||||||
branch = main
|
branch = main
|
||||||
|
[submodule "skills/local-places/server"]
|
||||||
|
path = skills/local-places/server
|
||||||
|
url = https://github.com/Hyaxia/local_places.git
|
||||||
|
|
|
||||||
|
|
@ -12,11 +12,14 @@ Search for nearby places using a local Google Places API proxy. Two-step flow: r
|
||||||
## Setup
|
## Setup
|
||||||
|
|
||||||
```bash
|
```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
|
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.
|
Requires `GOOGLE_PLACES_API_KEY` in `.env` or environment.
|
||||||
|
Server code is in `{baseDir}/server/` (submodule from Hyaxia/local_places).
|
||||||
|
|
||||||
## Quick Start
|
## Quick Start
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit bfc3becfc48af865722ef35ee7cca753519dd93e
|
||||||
Loading…
Reference in New Issue