mirror of
https://github.com/JetBrains/intellij-sdk-code-samples.git
synced 2025-07-29 01:37:51 +08:00
20 lines
1018 B
Markdown
20 lines
1018 B
Markdown
---
|
|
title: Run Configurations
|
|
---
|
|
<!-- Copyright 2000-2020 JetBrains s.r.o. and other contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. -->
|
|
|
|
*Run Configurations* allow users to run a certain type of external processes from within the IDE, e.g. a script, an application, a server, etc. You can provide UI for the user to specify execution options, as well as an option to create a run configuration based on a specific location in the source code.
|
|
|
|
# Architectural Overview
|
|
|
|
Classes used to manipulate run configurations can be split into the following groups:
|
|
|
|
* [Run configuration management](/basics/run_configurations/run_configuration_management.md). This includes creation, persistence, and modification.
|
|
* [Execution](/basics/run_configurations/run_configuration_execution.md).
|
|
|
|
This diagram shows the main classes:
|
|
|
|

|
|
|
|
See [Run Configurations Tutorial](/tutorials/run_configurations.md) for a fully working sample.
|