jerecom commited on
Commit
9fe1893
·
verified ·
1 Parent(s): 2e5fb5a

Disable authentication

Browse files
Files changed (1) hide show
  1. entrypoint.sh +3 -2
entrypoint.sh CHANGED
@@ -51,8 +51,9 @@ RAM_LIMIT_KB=$((14 * 1024 * 1024))
51
 
52
  start_opencode() {
53
  echo '=== [STEP 2] STARTING OPENCODE ==='
54
- export OPENCODE_SERVER_USERNAME=${OPENCODE_SERVER_USERNAME}
55
- export OPENCODE_SERVER_PASSWORD=${OPENCODE_SERVER_PASSWORD}
 
56
  opencode web --port 7860 --hostname 0.0.0.0 > /tmp/opencode.log 2>&1 &
57
  OPENCODE_PID=$!
58
  echo "=== [STEP 2] OPENCODE STARTED (PID: $OPENCODE_PID) ==="
 
51
 
52
  start_opencode() {
53
  echo '=== [STEP 2] STARTING OPENCODE ==='
54
+ export OPENCODE_SERVER_AUTH=false
55
+ export OPENCODE_SERVER_USERNAME=""
56
+ export OPENCODE_SERVER_PASSWORD=""
57
  opencode web --port 7860 --hostname 0.0.0.0 > /tmp/opencode.log 2>&1 &
58
  OPENCODE_PID=$!
59
  echo "=== [STEP 2] OPENCODE STARTED (PID: $OPENCODE_PID) ==="