Update settings.js

This commit is contained in:
Sweaterdog 2025-02-27 21:09:24 -08:00 committed by GitHub
parent fbca94dc75
commit 95b56f5301
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -2,17 +2,17 @@ export default
{ {
"minecraft_version": "1.20.4", // supports up to 1.21.1 "minecraft_version": "1.20.4", // supports up to 1.21.1
"host": "127.0.0.1", // or "localhost", "your.ip.address.here" "host": "127.0.0.1", // or "localhost", "your.ip.address.here"
"port": 55916, "port": process.env.MINECRAFT_PORT || 55916,
"auth": "offline", // or "microsoft" "auth": "offline", // or "microsoft"
// the mindserver manages all agents and hosts the UI // the mindserver manages all agents and hosts the UI
"host_mindserver": true, // if true, the mindserver will be hosted on this machine. otherwise, specify a public IP address "host_mindserver": true, // if true, the mindserver will be hosted on this machine. otherwise, specify a public IP address
"mindserver_host": "localhost", "mindserver_host": "localhost",
"mindserver_port": 8080, "mindserver_port": process.env.MINDSERVER_PORT || 8080,
// the base profile is shared by all bots for default prompts/examples/modes // the base profile is shared by all bots for default prompts/examples/modes
"base_profile": "./profiles/defaults/survival.json", // also see creative.json, god_mode.json "base_profile": "./profiles/defaults/survival.json", // also see creative.json, god_mode.json
"profiles": [ "profiles": ((process.env.PROFILES) && JSON.parse(process.env.PROFILES)) || [
"./andy.json", "./andy.json",
// "./profiles/gpt.json", // "./profiles/gpt.json",
// "./profiles/claude.json", // "./profiles/claude.json",