mirror of
https://github.com/fluencelabs/examples
synced 2025-06-18 04:21:22 +00:00
add fluence cli packaging, update records (#423)
* add packaging script * add packaged module * add packaging script * add package * add package script * add package * add package script * add service package * update figure 1 * add packaged modules * update records module types * add packaging script * add packaedmodule * add flunce cli reference * Update marine-examples/README.md Co-authored-by: Valery Antopol <valery.antopol@gmail.com> * add newline * add newline * add newline * add newline * update module order * update module name --------- Co-authored-by: Valery Antopol <valery.antopol@gmail.com>
This commit is contained in:
19
marine-examples/sqlite/package_modules.sh
Executable file
19
marine-examples/sqlite/package_modules.sh
Executable file
@ -0,0 +1,19 @@
|
||||
mkdir -p module-exports/modules/sqlite
|
||||
sh ./build.sh
|
||||
|
||||
cd module-exports
|
||||
cp ../artifacts/sqlite3.wasm modules/sqlite/
|
||||
|
||||
file="modules/sqlite/module.yaml"
|
||||
cat > $file <<- EOF
|
||||
version: 0
|
||||
name: sqlite
|
||||
loggerEnabled: true
|
||||
EOF
|
||||
|
||||
|
||||
tar -czvf sqlite.tar.gz modules
|
||||
rm -r modules
|
||||
cd ../
|
||||
|
||||
cargo clean
|
Reference in New Issue
Block a user