-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b42f349
commit ebc6019
Showing
104 changed files
with
10,932 additions
and
657 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,3 @@ | ||
{ | ||
"vue3snippets.enable-compile-vue-file-on-did-save-code": true | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"dependencies": { | ||
"@highlightjs/vue-plugin": "^2.1.0", | ||
"highlight.js": "^11.9.0" | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,4 +1,6 @@ | ||
*.retry | ||
docker.zip | ||
apps | ||
files | ||
files | ||
pack | ||
pack.tar.gz |
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 |
---|---|---|
@@ -0,0 +1,32 @@ | ||
--- | ||
- hosts: localhost | ||
tasks: | ||
# - name: Build the application on the master node | ||
# become: yes | ||
# shell: | | ||
# cat > /tmp/compile.sh <<'END' | ||
# #!/bin/bash | ||
|
||
# echo $PATH | ||
# export PATH="/root/.cargo/bin/:$PATH" | ||
# export PATH="/root/.wasmedge/bin/:$PATH" | ||
# cargo build --release | ||
# END | ||
|
||
# bash /tmp/compile.sh | ||
# rm -f /tmp/compile.sh | ||
# mkdir -p scripts/deploy_single_node/test_dir/files | ||
# mkdir -p scripts/deploy_single_node/test_dir/apps | ||
# cp scripts/deploy_single_node/node_config.yaml scripts/deploy_single_node/test_dir/files | ||
- name: Clear pack | ||
shell: rm -rf pack | ||
- name: Install Build Related | ||
include_tasks: ../install/2._ans_install_build.yml | ||
- name: Build sys and demo apps | ||
include_tasks: ../build/1._ans_build_sys_with_apps.yml | ||
# - name: Copy node_config.yaml | ||
# copy: | ||
# src: node_config.yaml | ||
# dest: pack/test_dir/files/node_config.yaml | ||
# force: yes | ||
# become: yes |
Oops, something went wrong.