Skip to main content

Terminal

The App Terminal provides direct access to your app's runtime environment, allowing you to debug, troubleshoot, and manage app-level operations. This guide explains how to access the terminal.

Accessing the App Terminal

  1. Navigate to the Apps page.
  2. Select the app you want to manage.
  3. Click the terminal icon at the top right corner
  4. The terminal window will open, connecting you directly to the app's runtime.

terminal

Using the App Terminal

Common Use Cases

  1. Managing Files Navigate, create, or edit files within your app:
cd /app/data       # Change directory  
ls -la # List files
nano config.json # Open a file for editing
  1. Running scripts Quickly test scripts or configurations in the app's runtime environment:
export API_KEY=12345     # Set an environment variable  
python test_script.py # Run a Python script

using-terminal