FR

Real-time web console

Interactive terminal connected to your environments via SSE.

The Console is an interactive terminal that connects in real time to your environment, directly from the browser.

Opening the console

  1. Open your project.
  2. Click the Console tab.
  3. The terminal connects automatically and shows the command prompt.

Capture à venir

en/console-overview

Cette capture illustrera la vue correspondante. Elle est générée automatiquement par le pipeline Playwright.

Console — interactive terminal

What you can do

  • Run commands inside the application container.
  • See continuous output (logs, tail -f).
  • Use Ctrl+C to interrupt a command.
  • Copy/paste with the right-click menu.

Tip

The terminal is the fastest way to diagnose a production issue: docker ps, df -h, top, or inspect your application logs.

How it works

The console uses an SSE (Server-Sent Events) stream connected to your server. Inputs are buffered in the browser and transmitted in packets; outputs are displayed continuously.

Closing and reopening

The console connects when the tab loads and disconnects cleanly when you leave the page. Reopening the tab restores the session.

Warning

Commands run inside the application container. Non-persisted changes (outside volumes) are lost on the next deployment. Prefer environment variables and volumes for any lasting change.

Troubleshooting

ProblemLikely causeFix
Cannot connectServer inactive or project not deployedCheck the server and deploy
Stream interruptedUnstable network connectionReload the page
Command not foundBinary missing from the containerUse the tools included in your Docker image
Last updated: 2026-08-14 Edit this page