Files
chat_grid/docs/local.md
2026-02-20 08:16:43 -05:00

668 B

Local Development

Start Server

cd /home/jjm/code/chgrid/server
.venv/bin/python main.py --config config.toml --port 8765

Start Client

cd /home/jjm/code/chgrid/client
npm run dev -- --host 0.0.0.0 --port 5173

Open: http://localhost:5173

Quick Restarts

Server:

lsof -tiTCP:8765 -sTCP:LISTEN | xargs -r kill
cd /home/jjm/code/chgrid/server
nohup .venv/bin/python main.py --config config.toml --port 8765 > /tmp/chgrid-server.log 2>&1 &

Client:

lsof -tiTCP:5173 -sTCP:LISTEN | xargs -r kill
cd /home/jjm/code/chgrid/client
nohup npm run dev -- --host 0.0.0.0 --port 5173 > /tmp/chgrid-client.log 2>&1 &