-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into sb/individual-cloud-provider-sections
- Loading branch information
Showing
16 changed files
with
1,967 additions
and
98 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
module.exports = { | ||
extends: [ | ||
'eslint:recommended', | ||
'plugin:@typescript-eslint/recommended', | ||
'plugin:mdx/recommended', | ||
], | ||
settings: { | ||
"mdx/code-blocks": true, | ||
"mdx/language-mapper": {} | ||
}, | ||
env: { | ||
node: true, | ||
}, | ||
overrides: [ | ||
{ | ||
files: ['*.mdx'], | ||
rules: { | ||
'no-unused-expressions': 'off', | ||
} | ||
}, | ||
{ | ||
files: ['*.md'], | ||
parser: 'eslint-plugin-markdownlint/parser', | ||
extends: ['plugin:markdownlint/recommended'], | ||
rules: { | ||
'markdownlint/md001': "off", | ||
'markdownlint/md013': [ 'error', { | ||
code_block_line_length: 120, | ||
tables: false | ||
}], | ||
'markdownlint/md024': [ 'error', { | ||
allow_different_nesting: true | ||
} | ||
], | ||
'markdownlint/md032': "off", | ||
} | ||
}, | ||
], | ||
}; |
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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
name: Lint | ||
|
||
on: | ||
pull_request: | ||
|
||
jobs: | ||
lint: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: 18 | ||
cache: yarn | ||
|
||
- name: Install dependencies | ||
run: yarn install --frozen-lockfile | ||
- name: Lint | ||
run: yarn run lint |
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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"default": true, | ||
"MD001": false, | ||
"MD013": { | ||
"code_block_line_length": 120, | ||
"tables": false | ||
}, | ||
"MD024": { | ||
"allow_different_nesting": true | ||
}, | ||
"MD032": false | ||
} |
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
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 |
---|---|---|
|
@@ -13,32 +13,31 @@ the Sequencer. | |
|
||
## Local Dependencies | ||
|
||
Clone the [dev-cluster](https://github.com/astriaorg/dev-cluster/tree/main) and the main | ||
[astria repo](https://github.com/astriaorg/astria) repo: | ||
Clone the [dev-cluster](https://github.com/astriaorg/dev-cluster/tree/main) and | ||
the main [astria repo](https://github.com/astriaorg/astria) repo: | ||
|
||
```bash | ||
git clone [email protected]:astriaorg/astria.git | ||
git clone [email protected]:astriaorg/dev-cluster.git | ||
``` | ||
|
||
And install the following tools: | ||
- Foundry Cast and Forge tools - https://book.getfoundry.sh/getting-started/installation | ||
- docker - https://docs.docker.com/get-docker/ | ||
- kubectl - https://kubernetes.io/docs/tasks/tools/ | ||
- helm - https://helm.sh/docs/intro/install/ | ||
- kind - https://kind.sigs.k8s.io/docs/user/quick-start/#installation | ||
- just - https://just.systems/man/en/chapter_4.html | ||
- Foundry Cast and Forge tools - <https://book.getfoundry.sh/getting-started/installation> | ||
- docker - <https://docs.docker.com/get-docker/> | ||
- kubectl - <https://kubernetes.io/docs/tasks/tools/> | ||
- helm - <https://helm.sh/docs/intro/install/> | ||
- kind - <https://kind.sigs.k8s.io/docs/user/quick-start/#installation> | ||
- just - <https://just.systems/man/en/chapter_4.html> | ||
|
||
Many of these dependencies are also required for running the local dev-cluster | ||
if you have previously done that. | ||
|
||
For reference, the latest component releases that the devnet cluster is running are the | ||
following: | ||
For reference, the latest component releases that the devnet cluster is running | ||
are the following: | ||
- [conductor v0.7.0](https://github.com/astriaorg/astria/releases/tag/v0.7.0--conductor) | ||
- [composer v0.2.2](https://github.com/astriaorg/astria/releases/tag/v0.2.2--composer) | ||
- [sequencer-relayer v0.5.1](https://github.com/astriaorg/astria/releases/tag/v0.5.1--sequencer-relayer) | ||
- [sequencer | ||
v0.4.1](https://github.com/astriaorg/astria/releases/tag/v0.4.1--sequencer) | ||
- [sequencer v0.4.1](https://github.com/astriaorg/astria/releases/tag/v0.4.1--sequencer) | ||
|
||
You do not need to download these independently, they are already within the | ||
dev-cluster repo. | ||
|
Oops, something went wrong.