- WebSocket relay service (FastAPI) bridges agents and viewers - Python agent with screen capture (mss), input control (pynput), script execution, and auto-reconnect - Windows service wrapper, PyInstaller spec, NSIS installer for silent mass deployment (RemoteLink-Setup.exe /S /SERVER= /ENROLL=) - Enrollment token system: admin generates tokens, agents self-register - Real WebSocket viewer replaces simulated canvas - Linux agent binary served from /downloads/remotelink-agent-linux - DB migration 0002: viewer_token on sessions, enrollment_tokens table - Sign-up pages cleaned up (invite-only redirect) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
24 lines
335 B
Plaintext
24 lines
335 B
Plaintext
# v0 sandbox internal files
|
|
__v0_runtime_loader.js
|
|
__v0_devtools.tsx
|
|
__v0_jsx-dev-runtime.ts
|
|
.snowflake/
|
|
.v0-trash/
|
|
.vercel/
|
|
next.user-config.*
|
|
|
|
# Environment variables
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
|
|
# Common ignores
|
|
node_modules/
|
|
.next/
|
|
.DS_Store
|
|
|
|
# PyInstaller build artifacts
|
|
agent/build/
|
|
agent/dist/
|
|
agent/__pycache__/
|
|
agent/*.spec.bak |