⚙️ Configuration generator
This tool assists you in creating and modifying configuration files for your project. It provides a user-friendly interface to customize settings according to your needs.
Frontend Configuration
Host
Auth
Auth UI
User
Links
Branding
##########
# v1.0.0-rc.1
##########
# [ HOST ]
VITE_API_HOST="http://localhost:3001" # API host URL. (default: "http://localhost:3001")
VITE_BASE_URL="http://localhost:3000" # Client host URL. (default: "http://localhost:3000")
# [ AUTH ]
VITE_AUTH_AUTHORITY_URL="" # OIDC Issuer URL.
#VITE_AUTH_PROFILE_URL="" # Optional, but recommended. The URL of the OIDC profile page.
VITE_AUTH_CLIENT_ID="" # OIDC client ID.
VITE_AUTH_REDIRECT_SLUG="auth" # URL slug for authentication redirect. (default: "auth")
VITE_AUTH_SCOPE="openid profile email" # OIDC authentication scope. (default: "openid profile email")
VITE_AUTH_POST_LOGOUT_REDIRECT_URI="" # URI to redirect to after logout.
VITE_AUTH_RESPONSE_TYPE="code" # OIDC response type. (default: "code")
# [ AUTH UI ]
VITE_AUTH_UI_PROVIDER_NAME="" # Display name on the 'Login with <<name>>' button.
VITE_AUTH_UI_PROVIDER_COLOR="cyan" # The color theme for the authentication UI provider buttons. (default: "cyan")
#VITE_AUTH_UI_PROVIDER_ICON_URL="" # Icon URL of the Auth provider.
# [ USER ]
VITE_USER_INFO_STALE_TIME="1800" # User information cache stale time in seconds. (default: "1800")
# [ LINKS ]
#VITE_VERSION_LINK="" # URL to the releases page. This link will be usable in the version info.
# [ BRANDING ]
#VITE_BRAND_AUTH_LOGO_URL="" # Logo URL that gets shown in the Auth screen.