app/local-environments.md +14 −1
25 25
26## Actions26## Actions
27 27
28<section class="feature-grid">
29
30<div>
28Use actions to define common tasks like starting your app's development server or running your test suite. These actions appear in the Codex app top bar for quick access. The actions will be run within the app's [integrated terminal](https://developers.openai.com/codex/app/features#integrated-terminal).31Use actions to define common tasks like starting your app's development server or running your test suite. These actions appear in the Codex app top bar for quick access. The actions will be run within the app's [integrated terminal](https://developers.openai.com/codex/app/features#integrated-terminal).
29 32
30Actions are helpful to keep you from typing common actions like triggering a build for your project or starting a development server. For one-off quick debugging you can use the integrated terminal directly.33Actions are helpful to keep you from typing common actions like triggering a build for your project or starting a development server. For one-off quick debugging you can use the integrated terminal directly.
31 34
3235</div>
36
37<CodexScreenshot
38 alt="Project actions list shown in Codex app settings"
39 lightSrc="/images/codex/app/actions-light.webp"
40 darkSrc="/images/codex/app/actions-dark.webp"
41 maxHeight="400px"
42 class="mb-4 lg:mb-0"
43/>
44
45</section>
33 46
34For example, for a Node.js project you might create a "Run" action that contains the following script:47For example, for a Node.js project you might create a "Run" action that contains the following script:
35 48