1. Install
tesser binary in ~/.tesser/bin and adds that
directory to your PATH. Open a new terminal and confirm it is installed:
2. Sign in
~/.config/tesser/credentials.json. There is
no other configuration to do.
3. Start the daemon
localhost:3000,
which is where your browser will see whichever box you have selected. If
another program already uses port 3000, start it with
tesser daemon --port 3300 instead.
4. Run a command on a box
From inside a git repository, run:node_modules, build caches, and anything else you install are still there
the next time.
5. Run a dev server
Tesser needs to know how to run your app. You describe each service in a small TOML file named after the service:setup command, starts the dev command, waits until port 3000 answers, and
prints the box id. Open http://localhost:3000 to see the dev server.
When you edit a file locally, push the change with:
sync when you have changed files and nothing else, because exec and
dev sync before they run. If you changed something the running server
cannot pick up on its own, such as an env file or a dependency, use
tesser sync <box_id> --restart, which syncs and then starts the server
again.
If your app reads a gitignored file such as
.env.local, that file is not
copied to the box, because sync follows .gitignore. Add
[env] files = [".env.local"] to the manifest and every sync will include
it. See Services.6. Leave it
You do not need to shut anything down. The workbench goes to sleep after 10 minutes without activity and the dev box after 2 hours. A sleeping box costs a few cents a day and wakes in about 40 seconds the next time a command targets it, with everything still installed. A box that has been asleep for 16 hours is removed. When you are finished with a worktree,tesser rm <box_id> removes its box
permanently. tesser ls lists every box you have.