Skip to content

Latest commit

 

History

History
37 lines (23 loc) · 945 Bytes

environment_variables.md

File metadata and controls

37 lines (23 loc) · 945 Bytes

Environment variables

You can optionally set environment variables to override the default behavior.

logLevel

This is the log level. Options: debug (Default: info)

cacheMaxAge

This is the number of seconds to cache the BLE responses for vehicle data and body controller state. If set to 0, the cache is disabled. (Default: 0)

httpListenAddress

This is the address and port to listen for HTTP requests. (Default: :8080)

Example

Docker compose

You can set the environment variables in your docker-compose.yml file. Example:

environment:
  - logLevel=debug
  - cacheMaxAge=30
  - httpListenAddress=:5687

This will set the log level to debug, the cache max age to 30 seconds, and the HTTP listen address to :5687.

Command line

You can also set the environment variables in the command line when starting the program. Example:

logLevel=debug cacheMaxAge=30 httpListenAddress=:5687 ./TeslaBleHttpProxy