File size: 3,008 Bytes
3fc7487 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 |
##########################################################################
#
# PINOKIO_SHARE_CLOUDFLARE
# Set this variable to share the app publicly via cloudflare tunnel.
#
##########################################################################
PINOKIO_SHARE_CLOUDFLARE=false
##########################################################################
#
# PINOKIO_SHARE_PASSCODE
#
# By default, your publicly shared app will be 100% open to anyone
# with the link via Cloudflare.
#
# You can add authorization by protecting it with a passcode.
# Set this value, and any access to the app will require a pass code input
#
##########################################################################
PINOKIO_SHARE_PASSCODE=
##########################################################################
#
# PINOKIO_SCRIPT_DEFAULT
# If this variable is false, 'default': true menu items in pinokio.js
# will NOT automatically run
#
##########################################################################
PINOKIO_SCRIPT_DEFAULT=true
##########################################################################
#
# GRADIO_TEMP_DIR
# All the files uploaded through gradio goes here.
#
# Delete this line to store the files under PINOKIO_HOME/cache/GRADIO_TEMPDIR
# or change the path if you want to use a different path
#
##########################################################################
GRADIO_TEMP_DIR=./cache/GRADIO_TEMP_DIR
##########################################################################
#
# HF_HOME
#
# Huggingface cache
# All the model files automatically downloaded through libraries like
# diffusers, transformers, etc. will be stored under this path
#
# You can save disk space by deleting this line, which will store all
# huggingface files under PINOKIO_HOME/cache/HF_HOME without redundancy.
#
##########################################################################
HF_HOME=./cache/HF_HOME
##########################################################################
#
# TORCH_HOME
#
# Torch hub cache
# All the files automatically downloaded by pytorch will be stored here
#
# You can save disk space by deleting this line, which will store all
# torch hub files under PINOKIO_HOME/cache/TORCH_HOME without redundancy.
#
##########################################################################
TORCH_HOME=./cache/TORCH_HOME
##########################################################################
#
# PINOKIO_SHARE_LOCAL
# Set this variable to true to share the app on the local network.
#
##########################################################################
PINOKIO_SHARE_LOCAL=false
##########################################################################
#
# PINOKIO_SHARE_LOCAL_PORT
# Set this variable to use fixed port for the local network sharing feature
# If not specified, a random port will be assigned to the local proxy used
# for local sharing.
#
##########################################################################
PINOKIO_SHARE_LOCAL_PORT= |