# The node environment, for dev environment use 'development'
NODE_ENV=production

# The URL under which the frontend will be reachable
NEXT_PUBLIC_PUBLIC_URL=%baseUrl

# The public API URL
NEXT_PUBLIC_API_URL=%baseUrl/api

# The API URL which the server should use
NEXT_PUBLIC_INTERNAL_API_URL=http://backend:8080/api

# Whether API requests should be logged
NEXT_PUBLIC_API_LOGGING=false

# Allow public access, deactivates auth mechanism
NEXT_PUBLIC_PUBLIC_ACCESS=false

# Comma separated array of supported languages. If only one, just use that without comma
NEXT_PUBLIC_SUPPORTED_LANGS=de,en

# Disable login / registration functionality. Only works if PUBLIC_ACCESS is set to true
#NEXT_PUBLIC_DISALLOW_LOGIN=false

# Allow logging in with query paramters for demo. You could login with a URL like
# /de?action=login&user=linda.jackson@larsens.portraitapp.co&password=asdf
NEXT_PUBLIC_ALLOW_QUERY_LOGIN=false