Files
wit-bindgen/.devcontainer/finalize.sh
Kyle Brown a4a138be44 Reorganize folder structure (#301)
* initial work

* Fix formatting

* Fix references to Rust library for guest code
Improve documentation
Other minor fixes

* Fix wastime -> host_wasmtime_rust references
Fixed feature flags

* Fix demo deploy
update readme
improve help text

* Update readme

Co-authored-by: Kyle Brown <kbrown@singlestore.com>
Co-authored-by: Kyle Brown <kyleb@liquidrocketry.com>
2022-08-24 10:07:35 -07:00

17 lines
428 B
Bash

printf "Running 'postCreateCommand' Script\n"
# Install Rust Targets
printf "Installing Rust Targets\n"
rustup update stable --no-self-update
rustup default stable
rustup target add wasm32-unknown-unknown
rustup target add wasm32-wasi
# Install Python stuff
printf "Installing Python Dependencies"
pip install mypy wasmtime
# Install NPM dependencies
printf "Installing NPM Dependencies"
cd crates/gen-host-js && npm install