mirror of
https://github.com/phishingclub/phishingclub.git
synced 2026-02-12 16:12:44 +00:00
18 lines
521 B
Go
18 lines
521 B
Go
package cli
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
// OutputEnv outputs the available environment variables
|
|
// These are used for CI or similar enviroment tests
|
|
func OutputEnv() {
|
|
fmt.Println("Available environment variables:")
|
|
fmt.Println("APP_MODE = production, development, integration_test")
|
|
fmt.Println("TEST_DB_LOG_LEVEL = silent, debug, error, warn, info")
|
|
fmt.Println("HTTP_PROXY - sets outgoing http proxy")
|
|
fmt.Println("HTTPS_PROXY - sets outgoing https proxy")
|
|
fmt.Println("NO_PROXY - hosts that should not be proxied")
|
|
|
|
}
|