forked from bytecodealliance/wasm-micro-runtime
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- add my extensions - use privileged mode for development - copilot - intellisense -> clangd - jupyter notebook - SGX - opam
- Loading branch information
Showing
4 changed files
with
120 additions
and
82 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
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,17 @@ | ||
#!/bin/bash -euvx | ||
|
||
printf "Running 'postCreateCommand' Script ...\n" | ||
|
||
printf "Installing Rust Targets\n" | ||
|
||
printf "Installing Python Dependencies\n" | ||
pip install -r .devcontainer/requirements.txt | ||
|
||
printf "Installing NPM Dependencies\n" | ||
|
||
printf "Installing Ocaml stuff\n" | ||
opam init --yes --shell-setup | ||
eval $(opam env --switch=default) | ||
opam install --yes dune menhir | ||
|
||
printf "'postCreateCommand' Script Done\n" |
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 @@ | ||
black | ||
jupyter | ||
nose | ||
numpy | ||
pycparser | ||
pylint |