16 lines
555 B
Bash
16 lines
555 B
Bash
# Hostname or IP your users will reach this box on (no scheme, no port)
|
|||
|
|
PUBLIC_HOST=localhost
|
||
|
|
|
||
|
|
# Where the Regress UI/API is reachable from browsers
|
||
|
|
PUBLIC_URL=http://${PUBLIC_HOST}:8096
|
||
|
|
|
||
|
|
# How close (meters) a player must physically be to a place to claim it or
|
||
|
|
# link from it. Mirrors Ingress's "you must be at the portal" rule.
|
||
|
|
CLAIM_RADIUS_METERS=40
|
||
|
|
|
||
|
|
# BTC Map sync area — defaults to Madeira, Portugal (Funchal-centered).
|
||
|
|
# See DESIGN.md for why this scope was chosen first.
|
||
|
|
BTCMAP_CENTER_LAT=32.7607
|
||
|
|
BTCMAP_CENTER_LON=-16.9595
|
||
|
|
BTCMAP_RADIUS_KM=45
|