Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagebash
LIPI_API_KEY=<lipi-api-key>

# Where DNA Spaces is the position provider, the following can be ignored
POSITION_PROVIDER_USERNAME=<username-here>
POSITION_PROVIDER_PASSWORD=<password-here>

...

You can choose to run a specific LIPI version by replacing latest with a specific version string. To list available versions:

full-width
Code Block
breakoutMode
languagebash
wget -q https://gcr.io/v2/mazemap-public-docker/lipi/tags/list -O - | \
    python -c "import json, sys; tags=json.loads(sys.stdin.read())['tags']; print(*[tag for tag in tags if len(tag) < 40], sep='\n')"

...