You can optionally set environment variables to override the default behavior.
This is the log level. Options: debug (Default: info)
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)
This is the address and port to listen for HTTP requests. (Default: :8080)
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.
You can also set the environment variables in the command line when starting the program. Example:
logLevel=debug cacheMaxAge=30 httpListenAddress=:5687 ./TeslaBleHttpProxy