Web
Using PhysicsCode in your browser.
PhysicsCode can run as a web application in your browser, providing the same powerful AI coding experience without needing a terminal.

Getting Started
Start the web interface by running:
physicscode webThis starts a local server on 127.0.0.1 with a random available port and automatically opens PhysicsCode in your default browser.
Configuration
You can configure the web server using command line flags or in your config file.
Port
By default, PhysicsCode picks an available port. You can specify a port:
physicscode web --port 4096Hostname
By default, the server binds to 127.0.0.1 (localhost only). To make PhysicsCode accessible on your network:
physicscode web --hostname 0.0.0.0When using 0.0.0.0, PhysicsCode will display both local and network addresses:
Local access: http://localhost:4096 Network access: http://192.168.1.100:4096mDNS Discovery
Enable mDNS to make your server discoverable on the local network:
physicscode web --mdnsThis automatically sets the hostname to 0.0.0.0 and advertises the server as physicscode.local.
You can customize the mDNS domain name to run multiple instances on the same network:
physicscode web --mdns --mdns-domain myproject.localCORS
To allow additional domains for CORS (useful for custom frontends):
physicscode web --cors https://example.comAuthentication
To protect access, set a password using the PHYSICSCODE_SERVER_PASSWORD environment variable:
PHYSICSCODE_SERVER_PASSWORD=secret physicscode webThe username defaults to physicscode but can be changed with PHYSICSCODE_SERVER_USERNAME.
Using the Web Interface
Once started, the web interface provides access to your PhysicsCode sessions.
Sessions
View and manage your sessions from the homepage. You can see active sessions and start new ones.

Server Status
Click “See Servers” to view connected servers and their status.

Attaching a Terminal
You can attach a terminal TUI to a running web server:
# Start the web serverphysicscode web --port 4096
# In another terminal, attach the TUIphysicscode attach http://localhost:4096This allows you to use both the web interface and terminal simultaneously, sharing the same sessions and state.
Config File
You can also configure server settings in your physicscode.json config file:
{ "server": { "port": 4096, "hostname": "0.0.0.0", "mdns": true, "cors": ["https://example.com"] }}Command line flags take precedence over config file settings.