add configs and blueprint

This commit is contained in:
Alexey Proshutinskiy 2021-06-25 15:56:45 +03:00
parent 18392cd93a
commit d4afa2f73f
4 changed files with 32 additions and 2 deletions

3
.gitignore vendored
View File

@ -12,5 +12,4 @@ Cargo.lock
# Added by cargo # Added by cargo
.idea .idea
/artifacts artifacts/*.wasm
g

7
artifacts/blueprint.json Normal file
View File

@ -0,0 +1,7 @@
{
"name": "ipfs",
"dependencies": [
"name:ipfs_effector",
"name:ipfs_pure"
]
}

View File

@ -0,0 +1,14 @@
{
"name": "ipfs_effector",
"mountedBinaries":
{
"ipfs": "/usr/bin/ipfs"
},
"mem_page_count": 1,
"preopened_files": [
"/tmp"
],
"mapped_dirs": {
"tmp": "./tmp"
}
}

View File

@ -0,0 +1,10 @@
{
"name": "ipfs_pure",
"mem_page_count": 1,
"preopened_files": [
"/tmp"
],
"mapped_dirs": {
"tmp": "./tmp"
}
}