mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-04-26 17:26:23 +02:00
feat: unut codesandbox integration
This commit is contained in:
parent
47e6a7f29e
commit
c007f0e056
13 changed files with 651 additions and 46 deletions
|
|
@ -42,6 +42,17 @@ if [ -z "$STT_SERVICE" ]; then
|
|||
echo "✅ Using default STT_SERVICE: local/base"
|
||||
fi
|
||||
|
||||
# ================================================
|
||||
# Microsandbox (optional secure sandbox server)
|
||||
# ================================================
|
||||
if [ "${MICROSANDBOX_ENABLED:-FALSE}" = "TRUE" ]; then
|
||||
export MICROSANDBOX_AUTOSTART=true
|
||||
echo "✅ Microsandbox enabled (requires --device /dev/kvm)"
|
||||
else
|
||||
export MICROSANDBOX_AUTOSTART=false
|
||||
echo "ℹ️ Microsandbox disabled (set MICROSANDBOX_ENABLED=TRUE to enable)"
|
||||
fi
|
||||
|
||||
# ================================================
|
||||
# Set Electric SQL configuration
|
||||
# ================================================
|
||||
|
|
@ -232,6 +243,7 @@ echo " Auth Type: ${NEXT_PUBLIC_FASTAPI_BACKEND_AUTH_TYPE}"
|
|||
echo " ETL Service: ${NEXT_PUBLIC_ETL_SERVICE}"
|
||||
echo " TTS Service: ${TTS_SERVICE}"
|
||||
echo " STT Service: ${STT_SERVICE}"
|
||||
echo " Microsandbox: ${MICROSANDBOX_ENABLED:-FALSE}"
|
||||
echo "==========================================="
|
||||
echo ""
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue