--- title: การตั้งค่ารันไทม์ slug: Tools/WebIDE/การตั้งค่ารันไทม์ translation_of: Archive/WebIDE/Setting_up_runtimes ---

A runtime is an environment in which you'll run and debug the app. A runtime could be a Firefox OS device connected to the desktop over USB, it could be a Firefox OS Simulator installed on the desktop itself, or it could be another instance of Firefox Desktop.

Under the "Select Runtime" dropdown, runtimes are grouped into four types:

USB DEVICES
Firefox OS devices connected over USB. From Firefox 36 this also gets you connected to Firefox for Android over USB.
WI-FI DEVICES
Firefox OS devices connected over Wi-Fi. New in Firefox 39.
SIMULATORS
Instances of the Firefox OS Simulator that you've installed.
OTHER
Remote runtimes to connect WebIDE to an arbitrary host and port. If you have the Valence add-on installed, this section will also list the additional runtimes it enables.

The rest of this section describes how you can add some runtimes.

การเชื่อมต่ออุปกรณ์ Firefox OS

If you have a sufficiently recent version of Firefox and Firefox OS, you can connect the Firefox OS device over WiFi. Otherwise, you must connect over USB.

การเชื่อมต่อผ่าน USB

Before you can connect a Firefox OS device, there's some setup you have to go through:

เฉพาะ Linux:

เฉพาะ Windows:

If there are any other Android devices connected to your computer, disconnect them. Now connect the device to the computer using USB. You should see the device appear under "USB DEVICES":

If you don't see your device, see the Troubleshooting page.

การเชื่อมต่อผ่าน WiFi

To connect over WiFi, you need:

This doesn't use ADB at all, and is therefore likely to be more reliable than the USB method.

Enable WiFi debugging

First, enable WiFi debugging on the Firefox OS device.

  1. Open Developer Settings on the device (Settings -> Developer)
  2. Check "DevTools via Wi-Fi"
  3. Edit the device name if desired

Select the device

In WebIDE, click the "Select Runtime" menu. You should see a section labeled "Wi-Fi Devices", and your device should appear under it:

Select your device.

Authenticate

Next, in the WebIDE you'll see a prompt with a QR code:

On the device, you'll see a connection prompt giving you options to "Scan" or "Scan and Remember". Choose one of the options and scan the QR code. Now WebIDE should connect to the device, and the device icon next to "Select Runtime" should turn blue to indicate this.

The QR code scanner can be a bit frustrating at the moment, as real devices appear to capture a very low resolution picture. Bug 1145772 aims to improve this soon. If you have trouble with this, try scanning with a few different orientations.

If you chose "Scan and Remember, then you won't have to scan the code again the next time you connect your computer to this device.

การเชื่อมต่อกับ Firefox สำหรับ Android

From Firefox 36 onwards Android devices connected over USB and running Firefox for Android appear as a runtime under "USB devices". See the article on connecting to Firefox for Android from WebIDE.

Before Firefox 36, you can connect to Firefox for Android without using WebIDE at all, or can use WebIDE by setting up a custom remote runtime.

Adding a Simulator

The Firefox OS Simulator is a version of the higher layers of Firefox OS that simulates a Firefox OS device, but runs on the desktop. It runs in a window the same size as a Firefox OS device, includes the Firefox OS user interface and built-in apps, and simulates many of the Firefox OS device APIs.

This means that in many cases, you don't need a real device to test and debug your app.

The Simulator doesn't ship inside Firefox but as a Firefox add-on. If you click "Install Simulator" in the Runtimes dropdown menu, you will go to a page from which you can install Simulators for various versions of Firefox OS.

You can install as many as you like. Be patient, though: the Simulator may take a few minutes to download. Once you've installed some Simulators you can close this "Extra Components" window, and the Simulators you've installed appear as options in the Runtimes dropdown menu:

To learn more about the Simulator, see its documentation page.

Other runtimes

Remote runtime

With a remote runtime you can use an arbitrary hostname and port to connect to the remote device.

Under the hood, Firefox OS devices and Android devices connect to the desktop using a program called the Android Debug Bridge, or ADB. By default, WebIDE uses an add-on called the ADB Helper: this simplifies the process for you by installing ADB and setting up port forwarding so the Firefox desktop tools can exchange messages with the device.

This is convenient in most cases, but sometimes you might want to use ADB outside of WebIDE: for example, you might be running ADB directly from the command line. In that case you'll connect to the device by specifying a host and port using the adb forward command (example: adb forward tcp:6000 localfilesystem:/data/local/debugger-socket).

If you then want to use WebIDE to connect as well, you should disable the ADB Helper add-on and connect WebIDE using the Custom runtime option, entering the host and port that you passed to adb forward (example: localhost:6000).

Also, before Firefox 36, the ADB Helper does not yet support connecting to Firefox for Android, so if you want to connect WebIDE to Firefox for Android, you'll need to set up your own port forwarding and use a custom runtime. See more about connecting to Firefox for Android using ADB prior to Firefox 36.

Valence-enabled runtimes

If you have the Valence add-on installed, you'll see three additional runtimes:

For instructions on how to connect to these runtimes, see the relevant entry in the Remote Debugging page.

Selecting a runtime

Once you've set up a runtime you can select it using the "Select Runtime" menu.

Now the "play" button in the center of the WebIDE toolbar is enabled: click it to install and run the app in the selected runtime.