Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add quick start guides for new adopters #87

Merged
merged 34 commits into from
May 26, 2023
Merged
Show file tree
Hide file tree
Changes from 25 commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
1a48944
hello world example guide for odo added.
michael-valdron Apr 17, 2023
b421e18
hello world example guide for che added.
michael-valdron Apr 25, 2023
0c61708
refactored navigation to place 'Get started' under each version.
michael-valdron May 9, 2023
10f181f
fix odo docs link
michael-valdron Apr 27, 2023
78c8d13
remove command groups reference from hello world guides to make versi…
michael-valdron Apr 27, 2023
b3e2425
remove authoring overview from additional resources of hello world ex…
michael-valdron Apr 27, 2023
e33652e
hotReloadCapable description updated.
michael-valdron May 2, 2023
27cb48b
Add directions to hello world starter guides on setting up the devtoo…
michael-valdron May 2, 2023
796a202
Update libs/docs/src/docs/2.1.0/helloworld-example-che.md
michael-valdron May 2, 2023
9fe1b75
Update libs/docs/src/docs/no-version/helloworld-example-odo.md
michael-valdron May 2, 2023
482c7b1
fix Express.js title in starter references.
michael-valdron May 2, 2023
ff04a55
fix 'EXPLORER' spelling mistake.
michael-valdron May 2, 2023
d62043d
Hello world example title changed to Quick start with odo and Quick s…
michael-valdron May 9, 2023
868b19b
fences reflecting changes converted to diff fences.
michael-valdron May 2, 2023
c91014b
Add optional step to quick start guides for setting up minikube as a …
michael-valdron May 3, 2023
072dfa8
remove kubectl and oc requirements from 'Quick start with odo v3' gui…
michael-valdron May 4, 2023
85676c3
docker removed as a requirement from quick start guides as image buil…
michael-valdron May 4, 2023
015a387
increase visibility of optional but recommended step to use 'odo init…
michael-valdron May 4, 2023
5d3aa13
Update libs/docs/src/docs/2.1.0/quickstart-che.md
michael-valdron May 8, 2023
3a03228
correct Eclipse Che version for 2.1.0 version of the 'Quick start wit…
michael-valdron May 8, 2023
b19db63
remove line that states Eclipse Che currently supports 2.1.0 in 'Quic…
michael-valdron May 8, 2023
82e3fd2
explaination of 'metadata.name' field added to 'Quick start with Ecli…
michael-valdron May 10, 2023
371900b
2.1.0 'Quick start with Eclipse Che' converted into 'Quick start with…
michael-valdron May 10, 2023
1ea37d5
new 2.2.0 'Quick start with Eclipse Che' added.
michael-valdron May 10, 2023
cf7efdc
rewrite for using a local devfile within Eclipse Che
michael-valdron May 16, 2023
1b66511
Update libs/docs/src/docs/2.2.0/quickstart-che.md
michael-valdron May 24, 2023
e72797a
Update libs/docs/src/docs/2.2.0/quickstart-che.md
michael-valdron May 24, 2023
b29a2a5
Update libs/docs/src/docs/2.2.0/quickstart-che.md
michael-valdron May 24, 2023
56389c9
Update libs/docs/src/docs/2.2.0/quickstart-che.md
michael-valdron May 24, 2023
84907a4
Update libs/docs/src/docs/2.2.0/quickstart-che.md
michael-valdron May 24, 2023
289d950
reword the item instructing schema version use for Eclipse Che
michael-valdron May 24, 2023
f9713cc
removes quick start guide for OpenShift Dev Spaces and references of …
michael-valdron May 24, 2023
f526fdd
add Quick start with Eclipse Che guide under all versions.
michael-valdron May 24, 2023
e52a584
references to the quick start guides added to other pages related to …
michael-valdron May 26, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 12 additions & 6 deletions libs/core/src/types/devfile-spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -221,9 +221,12 @@ export interface PurpleExec {
*/
group?: TentacledGroup;
/**
* Whether the command is capable to reload itself when source code changes. If set to
* `true` the command won't be restarted and it is expected to handle file changes on its
* own.
* Specify whether the command is restarted or not when the source code changes. If set to
* `true` the command won't be restarted. A *hotReloadCapable* `run` or `debug` command is
* expected to handle file changes on its own and won't be restarted. A *hotReloadCapable*
* `build` command is expected to be executed only once and won't be executed again. This
* field is taken into account only for commands `build`, `run` and `debug` with `isDefault`
* set to `true`.
*
* Default value is `false`
*/
Expand Down Expand Up @@ -1104,9 +1107,12 @@ export interface FluffyExec {
*/
group?: IndecentGroup;
/**
* Whether the command is capable to reload itself when source code changes. If set to
* `true` the command won't be restarted and it is expected to handle file changes on its
* own.
* Specify whether the command is restarted or not when the source code changes. If set to
* `true` the command won't be restarted. A *hotReloadCapable* `run` or `debug` command is
* expected to handle file changes on its own and won't be restarted. A *hotReloadCapable*
* `build` command is expected to be executed only once and won't be executed again. This
* field is taken into account only for commands `build`, `run` and `debug` with `isDefault`
* set to `true`.
*
* Default value is `false`
*/
Expand Down
Loading