Skip to main content

env-var

Environment Variables

# Application Version
APP_VERSION="v0.1-alpha.12.8"
# Service Access Protocol http|https, Required
DOMAIN_PROTOCOL="http"
# Service Access Domain: Supports ip access. Default ports: 80,443. Required.
DOMAIN="x.x.x.x"
# User-defined mysql (version 8.x or above) Access Address, Optional, defaults to locally created
MYSQL_HOST="mysql"
# User-defined ysql access port, Optional, defaults to locally created
MYSQL_PORT=3306
# User-defined ysql access user, Optional, defaults to locally created
MYSQL_USER="root"
# User-defined ysql access user password, Optional, defaults to locally created
MYSQL_PASSWORD="xxx"
# User-defined ysql default access database, Optional, defaults to locally created
MYSQL_DBNAME="lowcode"
# User-defined ysql data model database, Optional, defaults to locally created
MYSQL_RUNTIME_DBNAME="lcruntime"
# User-defined Storage Access Address, Optional, defaults to locally created
S3_ENDPOINT="minio"
# User-defined Storage Access Port, Optional, defaults to locally created
S3_PORT="9000"
# User-defined Storage Access Protocol, Optional, defaults to locally created
S3_SCHEME="http"
# User-defined Storage Access access key, Optional, defaults to locally created
S3_ACCESS_KEY="xxx"
# User-defined Storage Access secret key, Optional, defaults to locally created
S3_SECRET_KEY="xxx"
# When customizing storage with https protocol, whether to skip certificate verification, Optional, defaults to locally created
S3_INSECURE_SKIP_VERIFY=false
# Whether to initialize the object storage bucket for user-defined storage, Optional, defaults to locally created
S3_INIT_BUCKET="true"
# User-defined storage default object storage bucket name, Optional, defaults to locally created
S3_DEFAULT_BUCKET="lowcode"
# User-defined storage cloud storage bucket name, Optional, defaults to locally created
S3_CLOUD_STORAGE_BUCKET="lowcode-storage"
# User-defined storage application build bucket name, Optional, defaults to locally created
S3_CI_SOURCE_BUCKET="lowcode-ci-source"
tip
  • For specific values of MYSQL_PASSWORD, S3_ACCESS_KEY, and S3_SECRET_KEY, please check the ./.env file in the deployment directory
  • The environment variables here are for viewing only. To modify related configurations, edit the ./config.yaml file and then restart the platform service. For examples, refer to Port and Allowlist IP Configuration