- 新增 Client/src/lib/amap.ts:高德 JS 定位封装 - weather.ts / useWeather.ts:带经纬度/城市请求,定位失败不兜底 - Server weather.rs:相应调整 - 文档同步;.gitignore 忽略本地 .codegraph 索引 Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
38 lines
471 B
Plaintext
38 lines
471 B
Plaintext
# --- Client ---
|
||
node_modules
|
||
dist
|
||
dist-ssr
|
||
*.local
|
||
|
||
# Logs
|
||
logs
|
||
*.log
|
||
npm-debug.log*
|
||
yarn-debug.log*
|
||
yarn-error.log*
|
||
pnpm-debug.log*
|
||
lerna-debug.log*
|
||
|
||
# Editor directories and files
|
||
.vscode/*
|
||
!.vscode/extensions.json
|
||
.idea
|
||
.DS_Store
|
||
*.suo
|
||
*.ntvs*
|
||
*.njsproj
|
||
*.sln
|
||
*.sw?
|
||
|
||
# --- Server ---
|
||
Server/target
|
||
Server/.vite
|
||
|
||
# --- Tooling(本地索引/缓存,勿入库)---
|
||
.codegraph/
|
||
|
||
# --- Secrets(密钥/私钥/本地环境,永不入库)---
|
||
*.pem
|
||
*.env
|
||
weather.env
|