The Console is an interactive terminal that connects in real time to your environment, directly from the browser.
Opening the console
- Open your project.
- Click the Console tab.
- 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.
What you can do
- Run commands inside the application container.
- See continuous output (logs,
tail -f). - Use
Ctrl+Cto 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
| Problem | Likely cause | Fix |
|---|---|---|
| Cannot connect | Server inactive or project not deployed | Check the server and deploy |
| Stream interrupted | Unstable network connection | Reload the page |
| Command not found | Binary missing from the container | Use the tools included in your Docker image |