From ae511bdb9332bc66adc641106e85da7f964c92fd Mon Sep 17 00:00:00 2001 From: ksyasuda Date: Thu, 5 Sep 2024 04:19:13 -0700 Subject: [PATCH] update variable names --- env.example | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/env.example b/env.example index a5fe80e..7269343 100644 --- a/env.example +++ b/env.example @@ -1,10 +1,13 @@ -IP=0.0.0.0 # Lisen on all interfaces -PORT_NUMBER=8080 # Internal port number +# Server config +LISTEN_ADDRESS=0.0.0.0 # Lisen on all interfaces +LISTEN_PORT=8080 # Internal port number MPV_SOCKET=/tmp/mpvsocket # Path to mpv socket -LOGLEVEL=info -# MySQL connection info +# MySQL connection config MYSQL_HOST=localhost MYSQL_USER=mpvuser MYSQL_PASSWORD=SecretPassword -MYSQL_DATABASE=mpv \ No newline at end of file +MYSQL_DATABASE=mpv + +# Logging +LOGLEVEL=warning