Spaces:
Sleeping
Sleeping
File size: 1,506 Bytes
15f353f | 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 | # Local Environment Overrides
#
# This file is for local development overrides and is NOT committed to git.
# Copy this file to .env.local and customize as needed.
#
# Usage:
# cp .env.local.example .env.local
# # Edit .env.local with your local settings
#
# Any variables set here will override the values in .env
# ==============================================================================
# Example: Override ONNX Threading Configuration
# ==============================================================================
# Uncomment and adjust for your CPU:
# ONNX_INTRA_OP_NUM_THREADS=8
# ONNX_INTER_OP_NUM_THREADS=4
# ==============================================================================
# Example: Use Different Model Versions for Testing
# ==============================================================================
# ONNX_EVALUATION_MODEL=./public/onnx/experimental/model_v2_evaluation.onnx
# ONNX_TREE_MODEL=./public/onnx/experimental/model_v2_tree.onnx
# ==============================================================================
# Example: Frontend Development Settings
# ==============================================================================
# VITE_PORT=3000
# VITE_SERVER_URL=http://192.168.1.100:3000
# ==============================================================================
# Example: Backend Development Settings
# ==============================================================================
# PORT=4000
# CLIENT_URL=http://localhost:3000
|