Skip to content

Commit fc744a3

Browse files
brenziriusricardoDan Forbeskaichaosunjoepetrowski
authored
Upgrade upstream 2.0.0 (#15)
* alpha.6 to github (#37) * alpha.6 to github * fix format * Update to 2.0.0-alpha.7 (#38) Closes #35 Thanks to @brenzi for the work he did on #36 I copied a lot of it 🙏 * Use docker to setup a local dev chain (#41) * use docker to setup a local dev chain. * install docker link * update command * Update README.md Co-authored-by: joe petrowski <[email protected]> * more commands to start or check a node. * purge chain in docker Co-authored-by: joe petrowski <[email protected]> * fix: README update on docker usage (#43) * use docker to setup a local dev chain. * install docker link * update command * Update README.md Co-authored-by: joe petrowski <[email protected]> * more commands to start or check a node. * purge chain in docker * update README Co-authored-by: Kaichao Sun <[email protected]> Co-authored-by: joe petrowski <[email protected]> * Upgrade to Substrate v2.0.0-alpha.8 (#44) Co-authored-by: Dan Forbes <[email protected]> * Update to v2.0.0-rc1 (#45) * Upgrade to Substrate v2.0.0-rc2 (#46) * change (ci): new CI image * Upgrade to v2.0.0-rc3 * Fix manual upgrade errors and update Cargo lockfile * Add some playground love (#57) * 🔖 update image * Playground updates (#58) * Fixed typo * Updated image organization * 🔖 update image * Get rid of that guy. Use tag (#59) * 🔖 update image * Updated base template image (#61) * 🔖 update image * Upgrade to v2.0.0-rc4 (#62) * Upgrade to v2.0.0-rc4 * Better updates to README Co-authored-by: Joshy Orndorff <[email protected]> Co-authored-by: Joshy Orndorff <[email protected]> * 🔖 update image * Upgrade to v2.0.0-rc5 (#65) * 🔖 update image * Remove unused dependencies (#66) * 🔖 update image * Update serde dependency per @thiolliere (#68) & fix OpaqueBlock paritytech/substrate#6557 (comment) * 🔖 update image * 🔖 update image * Updated base image * 🔖 update image * Create Issue templates (#73) * Create Issue templates - Report a Bug - Suggest a Feature - Ask a Question * 🔖 update image * Only run build action in main repo * 🔖 update image * Upgrade to v2.0.0-rc6 (#75) * 🔖 update image * Simplify docker image creation workflow * Backport paritytech/substrate#7014 (#81) * Update to v2.0.0 🎉 (#88) * Update Dockerfile * Update Dockerfile * Add toolchain file (#92) * Add toolchain file * Remove reference to script that uses latest nightly * Remove link to nonexistent subheading * Update devcontainer.json * Delete Dockerfile * Added nicer commands * Rely on latest image * Added new menu option * Update toolchain file to be compatible with paritytech/ci-linux Docker (#98) Closes #95 * Remove rust-toolchain file (#99) Architecture specific toolchains are not allowed in this file. We can assume that stable is the default toolchain and should not dictate with which toolchain the user builds the client. Also this breaks under macOS. We are only interested with which toolchain the runtime is build. For this we should set the WASM_BUILD_TOOLCHAIN variable. * Bump wasm-builder-runner 1.0 wasm-builder-runner is not compatible with 2.0 wasm-builder paritytech/substrate#7283 (comment) * Nix shell sync with Substrate (#100) * nix shell config * fix darwin * update nightly for nix shell * fix merge issues * fix deps Co-authored-by: Ricardo Rius <[email protected]> Co-authored-by: Dan Forbes <[email protected]> Co-authored-by: kaichao <[email protected]> Co-authored-by: joe petrowski <[email protected]> Co-authored-by: Jimmy Chu <[email protected]> Co-authored-by: Dan Forbes <[email protected]> Co-authored-by: Denis P <[email protected]> Co-authored-by: Joshy Orndorff <[email protected]> Co-authored-by: Julien Eluard <[email protected]> Co-authored-by: Caio <[email protected]> Co-authored-by: Alexander Theißen <[email protected]> Co-authored-by: Xiliang Chen <[email protected]> Co-authored-by: Bastian Köcher <[email protected]>
1 parent 62f3f1a commit fc744a3

20 files changed

+2181
-945
lines changed

.devcontainer/devcontainer.json

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{
2+
"name": "Substrate Node template",
3+
"context": "..",
4+
"settings": {
5+
"terminal.integrated.shell.linux": "/bin/bash",
6+
"lldb.executable": "/usr/bin/lldb"
7+
},
8+
"extensions": [
9+
"rust-lang.rust",
10+
"bungcip.better-toml",
11+
"vadimcn.vscode-lldb"
12+
],
13+
"forwardPorts": [
14+
3000,
15+
9944
16+
],
17+
"preCreateCommand": "cargo build --release && cargo check",
18+
"postStartCommand": "./target/release/node-template --dev --ws-external",
19+
"menuActions": [
20+
{"id": "polkadotjs",
21+
"label": "Open PolkadotJS Apps",
22+
"type": "external-preview",
23+
"args": ["https://polkadot.js.org/apps/?rpc=wss%3A%2F%2F/$HOST/wss"]}
24+
],
25+
"image": "paritytech/substrate-playground-template-node-template:latest"
26+
}
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
---
2+
name: Ask a Question
3+
about: Ask a question about this template.
4+
title: ""
5+
labels: question
6+
assignees: ""
7+
---
8+
9+
**Question**
10+
11+
_Please include information such as the following: is your question to clarify an existing resource
12+
or are you asking about something new? what are you trying to accomplish? where have you looked for
13+
answers?_
Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
---
2+
name: Report a Bug
3+
about: Report a problem with this template.
4+
title: ""
5+
labels: bug
6+
assignees: ""
7+
---
8+
9+
**Description**
10+
11+
_Tell us what happened. In particular, be specific about any changes you made to this template.
12+
Ideally, provide a link to your project's GitHub repository. Please note that we are not able to
13+
support all conceivable changes to this template project, but the more information you are able to
14+
provide the more equipped we will be to help._
15+
16+
**Steps to Reproduce**
17+
18+
_Replace the example steps below with actual steps to reproduce the bug you're reporting._
19+
20+
1. Go to '...'
21+
2. Click on '....'
22+
3. Scroll down to '....'
23+
4. See error
24+
25+
**Expected vs. Actual Behavior**
26+
27+
_What did you expect to happen after you followed the steps you described in the last section? What
28+
actually happened?_
29+
30+
**Environment**
31+
32+
_Describe the environment in which you encountered this bug. Use the list below as a starting point
33+
and add additional information if you think it's relevant._
34+
35+
- Operating system:
36+
- Template version/tag:
37+
- Rust version (run `rustup show`):
38+
39+
**Logs, Errors or Screenshots**
40+
41+
_Please provide the text of any logs or errors that you experienced; if
42+
applicable, provide screenshots to help illustrate the problem._
43+
44+
**Additional Information**
45+
46+
_Please add any other details that you think may help us solve your problem._
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
---
2+
name: Suggest a Feature
3+
about: Suggest a new feature or an improvement to an existing feature for this template.
4+
title: ""
5+
labels: enhancement
6+
assignees: ""
7+
---
8+
9+
**Motivation**
10+
11+
_Describe the need or frustration that motivated you to make this suggestion. Please note that the
12+
goal of this project is to provide a general-purpose template project, so please take care when
13+
suggesting features that may be specific to a particular use case._
14+
15+
**Suggested Solution**
16+
17+
_Describe your suggested solution to the need or frustration that you are experiencing._
18+
19+
**Alternatives**
20+
21+
_Describe any alternative solutions or features you considered and why you believe your suggested
22+
solution is preferable._
23+
24+
**Additional Information**
25+
26+
_Provide any additional information that you believe may help us evaluate your suggestion._
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Build and Push template
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
8+
jobs:
9+
build-push-template:
10+
if: ${{ github.repository == 'substrate-developer-hub/substrate-node-template' }}
11+
runs-on: ubuntu-18.04
12+
steps:
13+
- name: Trigger playground inclusion
14+
uses: peter-evans/repository-dispatch@v1
15+
with:
16+
token: ${{ secrets.REPO_ACCESS_TOKEN }}
17+
repository: paritytech/substrate-playground
18+
event-type: template-updated
19+
client-payload: '{"id": "node-template"}'

0 commit comments

Comments
 (0)