1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- SERVER_PORT=5002
- SERVER_KEY=lYkiYYT6owG+71oLerGzA7GXCgOT++6ovaezWAjpCjf+Sjc3ZtU+qUEi
- GIN_MODE=release
- PLATFORM=local
- DIFY_INNER_API_KEY="QaHbTe77CtuXmsfyhR7+vRjI/+XbV1AaFy691iy+kGDv2Jvy0/eAh8Y1"
- DIFY_INNER_API_URL=http://127.0.0.1:5001
- PLUGIN_REMOTE_INSTALLING_ENABLED=true
- PLUGIN_REMOTE_INSTALLING_HOST=127.0.0.1
- PLUGIN_REMOTE_INSTALLING_PORT=5003
- # aws credentials
- AWS_ACCESS_KEY=
- AWS_SECRET_KEY=
- AWS_REGION=
- # services storage
- PLUGIN_STORAGE_TYPE=local
- PLUGIN_STORAGE_OSS_BUCKET=
- PLUGIN_STORAGE_LOCAL_ROOT=./storage
- # where the plugin finally installed
- PLUGIN_INSTALLED_PATH=plugin
- # where the plugin finally running and working
- PLUGIN_WORKING_PATH=cwd
- # persistence storage
- PERSISTENCE_STORAGE_PATH=persistence
- PERSISTENCE_STORAGE_MAX_SIZE=104857600
- # plugin webhook
- PLUGIN_WEBHOOK_ENABLED=true
- # routine pool
- ROUTINE_POOL_SIZE=1024
- # redis
- REDIS_HOST=127.0.0.1
- REDIS_PORT=6379
- REDIS_PASSWORD=difyai123456
- DB_USERNAME=postgres
- DB_PASSWORD=difyai123456
- DB_HOST=localhost
- DB_PORT=5432
- DB_DATABASE=dify_plugin
- DIFY_INVOCATION_CONNECTION_IDLE_TIMEOUT=120
- MAX_PLUGIN_PACKAGE_SIZE=52428800
- # dify serverless connector
- DIFY_PLUGIN_SERVERLESS_CONNECTOR_URL=http://127.0.0.1:5004
- DIFY_PLUGIN_SERVERLESS_CONNECTOR_API_KEY=HeRFb6yrzAy5vUSlJWK2lUl36mpkaRycv4witbQpucXacgXg7G9a8gVL
- # python interpreter, if you are using local runtime, you should set this path to your python interpreter path
- # otherwise, it should be /usr/bin/python3
- PYTHON_INTERPRETER_PATH=/Users/yeuoly/miniconda3/envs/dify-plugin-sdk/bin/python
- # python environment init timeout, if the python environment init process is not finished within this time, it will be killed
- PYTHON_ENV_INIT_TIMEOUT=120
- # pprof enabled, for debugging
- PPROF_ENABLED=false
- # FORCE_VERIFYING_SIGNATURE, for security, you should set this to true, pls be sure you know what you are doing
- # if want to install plugin without verifying signature, set this to false
- FORCE_VERIFYING_SIGNATURE=true
- # proxy settings, example: HTTP_PROXY=http://host.docker.internal:7890
- HTTP_PROXY=
- HTTPS_PROXY=
|