● self-host
Run it on
your machine.
One command. Local-only. Your AI keys never leave your laptop.
คำสั่งเดียว. รันบนเครื่องตัวเอง. API key ไม่ออกจากเครื่อง.
~ · zsh
$ curl -fsSL https://the-table.bar/install.sh | bash
// requires: node 20+ · git · openssl
// what the script does
- 01Clones the public repo into ./the-table
- 02Installs npm deps
- 03Generates a fresh ENCRYPTION_KEY and JWT_SECRET into .env.local
- 04Tells you to run npm run dev — open http://localhost:3000
The script doesn't touch global state. Everything lives under ./the-table. Delete the directory, the install is gone.
// prefer doing it manually
git clone https://github.com/permX/the-table.git cd the-table/web npm install --legacy-peer-deps # generate secrets echo "ENCRYPTION_KEY=$(openssl rand -hex 32)" >> .env.local echo "JWT_SECRET=$(openssl rand -hex 32)" >> .env.local npm run dev # → http://localhost:3000