Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
6c1d115
alpha.6 to github (#37)
riusricardo May 6, 2020
36971ec
Update to 2.0.0-alpha.7 (#38)
May 6, 2020
1b85882
Use docker to setup a local dev chain (#41)
kaichaosun May 15, 2020
3323afa
fix: README update on docker usage (#43)
May 15, 2020
38058f3
Upgrade to Substrate v2.0.0-alpha.8 (#44)
riusricardo May 16, 2020
1311953
Update to v2.0.0-rc1 (#45)
riusricardo May 25, 2020
93862bd
Upgrade to Substrate v2.0.0-rc2 (#46)
May 26, 2020
7f9c829
change (ci): new CI image
TriplEight Jun 10, 2020
0947321
Upgrade to v2.0.0-rc3
danforbes Jun 10, 2020
7b4bbbc
Fix manual upgrade errors and update Cargo lockfile
danforbes Jun 10, 2020
f5acce1
Merge pull request #54 from substrate-developer-hub/v2.0.0-rc3
JoshOrndorff Jun 10, 2020
8f31116
Add some playground love (#57)
jeluard Jun 17, 2020
64ca567
Merge pull request #53 from substrate-developer-hub/ci_image
kaichaosun Jun 19, 2020
a034550
:bookmark: update image
kaichaosun Jun 19, 2020
b98e1d2
Playground updates (#58)
jeluard Jun 19, 2020
cf26399
:bookmark: update image
jeluard Jun 19, 2020
fe8e53a
Get rid of that guy. Use tag (#59)
jeluard Jun 19, 2020
4509dc8
:bookmark: update image
jeluard Jun 19, 2020
aab3a40
Updated base template image (#61)
jeluard Jun 23, 2020
a704d36
:bookmark: update image
jeluard Jun 23, 2020
ff0fa24
Upgrade to v2.0.0-rc4 (#62)
Jun 27, 2020
f8924ad
:bookmark: update image
Jun 27, 2020
3718adb
Upgrade to v2.0.0-rc5 (#65)
Jul 25, 2020
76fc3ef
:bookmark: update image
Jul 25, 2020
769ca1a
Remove unused dependencies (#66)
c410-f3r Jul 28, 2020
c29d312
:bookmark: update image
c410-f3r Jul 28, 2020
360f308
Update serde dependency per @thiolliere (#68) & fix OpaqueBlock
Aug 3, 2020
8f769db
:bookmark: update image
Aug 3, 2020
a743715
upgrade dependencies to rc5
Sep 12, 2020
96cf16c
Merge substrate-node-template commit '8f769dbd971c44f0ca6747fa1595f6e…
Sep 12, 2020
e572947
fix upgrade and bump version
Sep 12, 2020
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
7 changes: 6 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,9 @@

.DS_Store

.idea/
.idea/
# The cache for docker container dependency
.cargo

# The cache for chain data in container
.local
37 changes: 37 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "Run ",
"type": "shell",
"command": "cargo",
"args": ["run", "--release", "--", "--dev"],
"group": {
"kind": "build",
"isDefault": true
},
"presentation": {
"reveal": "always",
"panel": "new"
},
"problemMatcher": [
{
"owner": "rust",
"fileLocation": ["relative", "${workspaceRoot}"],
"pattern": {
"regexp": "^(.*):(\\d+):(\\d+):\\s+(\\d+):(\\d+)\\s+(warning|error):\\s+(.*)$",
"file": 1,
"line": 2,
"column": 3,
"endLine": 4,
"endColumn": 5,
"severity": 6,
"message": 7
}
}
]
}
]
}
Loading