- Updated index.html to enhance UI with new elements for hidden shapes and catalog CSVs. - Changed download button to a button element for better accessibility. - Modified server.js to improve API endpoints: - Renamed overlays endpoint to scene for clarity. - Updated tile rendering endpoints to use atlas instead of tile coordinates. - Added new endpoint for downloading shape catalog CSV files. - Removed unused options in build creation.
14 lines
No EOL
311 B
YAML
14 lines
No EOL
311 B
YAML
services:
|
|
map-renderer:
|
|
build:
|
|
context: .
|
|
target: dev
|
|
ports:
|
|
- "3000:3000"
|
|
environment:
|
|
PORT: "3000"
|
|
REMORSE_STATIC_DIR: /app/STATIC
|
|
REGRET_STATIC_DIR: /app/STATIC_REGRET
|
|
volumes:
|
|
- ./STATIC:/app/STATIC:ro
|
|
- ./STATIC_REGRET:/app/STATIC_REGRET:ro |