-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
hotfix incorrect hash section references, adjust files listed in inde…
…x.js to only reference files currently included in repo, remove Test markdown file
- Loading branch information
1 parent
91e86ed
commit a18fbe2
Showing
17 changed files
with
58 additions
and
112 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,39 @@ | ||
# Builds | ||
|
||
A Build is an artifact of your [Component](/docs/Components.md) Source Code that has been processed through your own [Build Steps](#build-steps). | ||
|
||
## Build Steps | ||
|
||
You can define any compilation, packaging, or testing steps for your Components within the [AppManifest](/docs/Manifests.md#appmanifest). | ||
|
||
### Run Step | ||
|
||
Execute a command. | ||
|
||
```yaml | ||
steps: | ||
- run: npm ci | ||
``` | ||
### Copy Step | ||
Copy files from your source code into the current directory. | ||
```yaml | ||
steps: | ||
- copy: package.json | ||
- copy: * | ||
``` | ||
### Directory Step | ||
Set the current working directory. | ||
```yaml | ||
steps: | ||
- directory: /build | ||
``` | ||
## Source Code | ||
Source Code represents a discreet version of your code that has been indexed and archived by Noop. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
# Clusters | ||
|
||
A Cluster is an instance of Noop infrastructure running in a designated region. They provide a high degree of isolation for compute and data. | ||
|
||
## Shared Clusters | ||
While in our private preview, we are only offering a few shared Clusters to be used by all participants. | ||
|
||
While in our private preview, we are only offering a few shared Clusters to be used by all participants. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
# Environments | ||
Environments are an isolated space for a single instance of an [Application](/docs/Applications.md). They run on a designated [Cluster](/docs/Clusters.md) and contain the [Resources](/docs/Resources.md) needed by your Application. | ||
|
||
Environments are an isolated space for a single instance of an [Application](/docs/Applications.md). They run on a designated [Cluster](/docs/Clusters.md) and contain the [Resources](/docs/Resources.md) needed by your Application. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
# Local Development | ||
|
||
In Noop Desktop, you can run your NoopApps on your local development machine and quickly iterate on your code. It leverages Docker Desktop to run local containers of all your Components and Resources. | ||
|
||
## Download | ||
Download [Noop Desktop](https://noop.dev/download) now! | ||
|
||
Download [Noop Desktop](https://noop.dev/download) now! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
# Logic | ||
Noop Logic allows complex, dynamic expressions throughout Noop. This includes [Traffic Routes](/docs/Traffic.md#routing-rules), [Pipeline Conditions](/docs/Pipelines.md#conditions), [Log Queries](/docs/Logs.md#Querying), and more. | ||
|
||
Noop Logic allows complex, dynamic expressions throughout Noop. This includes [Traffic Routes](/docs/Traffic.md#routing-rules), [Pipeline Conditions](/docs/Pipelines.md#conditions), [Log Queries](/docs/Logs.md#querying), and more. | ||
|
||
## Operators | ||
Coming Soon! | ||
|
||
Coming Soon! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,11 @@ | ||
# Logs | ||
Logs within Noop are grouped by broad contexts, like [Environments](/docs/Environments.md) or [Traffic Endpoints](/docs/Traffic.md) and are easily queryable down to your interest. | ||
|
||
Logs within Noop are grouped by broad contexts, like [Environments](/docs/Environments.md) or [Traffic Endpoints](/docs/Traffic.md) and are easily queryable down to your interest. | ||
|
||
## Querying | ||
|
||
All our logs are JSON structured and can be queried with [Noop Logic](/docs/Logic.md). If your Components output their logs in JSON, you can query their contents as well. Noop also supports full-text searching of all logs. | ||
|
||
## Live Tailing | ||
|
||
When viewing recent logs without specifying an end time, Noop will automatically tail and stream the log events to you. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -83,5 +83,4 @@ resources: | |
type: mysql | ||
- name: S3Bucket | ||
type: s3 | ||
|
||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,16 @@ | ||
# Pipelines | ||
|
||
Pipelines enable you to run [Workflows](/docs/Workflows.md) in response to [Repository Events](/docs/Applications.md#linked-repositories). This includes continuous integration and delivery (CI/CD) as well as so much more. They are a great way to have Noop automatically respond to changes in your [Source Code](/docs/Builds.md#source-code) | ||
|
||
## Templates | ||
|
||
We offer several Pipeline Templates to get you started right away. | ||
|
||
- Build All Pushed Code | ||
- Build & Deploy on Branch Push | ||
- Build & Deploy on Tag Push | ||
- Build & Deploy on Branch Push | ||
- Build & Deploy on Tag Push | ||
- Ephemeral Pull Request Environments | ||
|
||
## Conditions | ||
You can express a condition in [Noop Logic](/docs/Logic.md) that is tested against every Repository Event received for your Application. Conditions might include certain events, like pushes, or specific code branches. | ||
|
||
You can express a condition in [Noop Logic](/docs/Logic.md) that is tested against every Repository Event received for your Application. Conditions might include certain events, like pushes, or specific code branches. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
# Workflows | ||
|
||
## Actions | ||
Coming Soon! | ||
|
||
Coming Soon! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters