Skip to content

Commit 361255d

Browse files
committed
v1
0 parents  commit 361255d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+12951
-0
lines changed

.claude/settings.local.json

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
{
2+
"permissions": {
3+
"allow": [
4+
"Bash(git init:*)",
5+
"Bash(npm install:*)",
6+
"Bash(npx eslint:*)",
7+
"Bash(npx knip:*)",
8+
"Bash(npm uninstall:*)",
9+
"Bash(npm test:*)",
10+
"Bash(dir:*)",
11+
"Bash(powershell.exe:*)",
12+
"WebFetch(domain:raw.githubusercontent.com)",
13+
"Bash(npm rebuild:*)",
14+
"Bash(node -e:*)",
15+
"Bash(docker build:*)",
16+
"Bash(node scripts/migrate.js:*)",
17+
"Bash(docker:*)",
18+
"Bash(tasklist:*)",
19+
"Bash(npm run lint:*)",
20+
"Bash(node scripts/generate-pmtiles.js:*)",
21+
"Bash(node scripts/recalculate-targets.js:*)",
22+
"Bash(docker-compose exec:*)",
23+
"Bash(git stash:*)",
24+
"Bash(node --test:*)",
25+
"Bash(npm run knip:*)"
26+
]
27+
}
28+
}

.gitignore

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
# Node.js
2+
node_modules/
3+
npm-debug.log*
4+
yarn-debug.log*
5+
yarn-error.log*
6+
7+
# Data (SQLite databases and source images — large binaries)
8+
data/
9+
10+
# Logs
11+
logs/
12+
*.log
13+
pids
14+
*.pid
15+
*.seed
16+
*.pid.lock
17+
18+
# Coverage
19+
coverage/
20+
21+
# Optional npm cache
22+
.npm
23+
24+
# Optional eslint cache
25+
.eslintcache
26+
27+
# Optional REPL history
28+
.node_repl_history
29+
30+
# dotenv environment variables
31+
.env
32+
.env.*
33+
34+
# macOS
35+
.DS_Store
36+
37+
# Editor directories and files
38+
.vscode/
39+
.idea/
40+
*.sublime-project
41+
*.sublime-workspace
42+
43+
# Windows
44+
Thumbs.db
45+
ehthumbs.db
46+
Desktop.ini
47+
48+
# Source images (raw input for migration)
49+
IMG/
50+
METADATA/
51+
52+
# Lock file
53+
package-lock.json

0 commit comments

Comments
 (0)