-
Notifications
You must be signed in to change notification settings - Fork 0
Feat: Codex migration #1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -0,0 +1,37 @@ | ||||||
| # Server Configuration | ||||||
| SERVER_PORT=8000 | ||||||
| ASSETS_DIR=./assets | ||||||
|
|
||||||
| # Command-line Tool Paths | ||||||
| PMTILES_CMD=pmtiles | ||||||
| BZIP2_CMD=bzip2 | ||||||
| FIND_CMD=find | ||||||
|
|
||||||
| # Database Configuration | ||||||
| LOCALITYSRV_DB_PATH=./assets/whosonfirst-data-admin-latest.db | ||||||
| LOCALITYSRV_CID_DB_PATH=./assets/locality-cid-mappings.db | ||||||
| LOCALITYSRV_LOCALITIES_DIR=./assets/localities | ||||||
| WHOSEONFIRST_DB_URL=https://data.geocode.earth/wof/dist/sqlite/whosonfirst-data-admin-latest.db.bz2 | ||||||
|
||||||
| WHOSEONFIRST_DB_URL=https://data.geocode.earth/wof/dist/sqlite/whosonfirst-data-admin-latest.db.bz2 | |
| WHOSONFIRST_DB_URL=https://data.geocode.earth/wof/dist/sqlite/whosonfirst-data-admin-latest.db.bz2 |
Copilot
AI
Nov 26, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These environment variables in the example file (PROTOMAPS_BUILDS_URL and DB_CONNECTION_POOL_SIZE) are no longer used in the codebase. They should be removed from the example configuration file to avoid confusion.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -3,4 +3,7 @@ | |
| *.bz2 | ||
| *.db | ||
| *.pmtiles | ||
| .kilocode | ||
| .kilocode | ||
| .env | ||
| .codex-data | ||
| .codex-test-data | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The
SERVER_PORTenvironment variable on line 2 is not used in the new configuration implementation (LocalitySrvConfig::from_env()). It should be removed from the example file as the application no longer runs an HTTP server.