Quick 1 liner: How does one start an OTP application and pass command-line args to it?
I wanted be able to start an OTP application in a generic "UNIX" way, being able to pass command-line arguments parsed by getopts. So, I have an erlang escript which uses the getopt library to handle parsing of command-line arguments.
shino's answer got me on the right path:
You can also override application environment settings on the command line:
erl -myapp foo bar ...
This will set application.get_env(myapp, foo) to "bar", overriding any app.config setting.