https://github.com/emarifer/portfolio_cv
A simple Landing Page Web Application developed with Rust/WebAssembly + Yew + Tailwindcss.
https://github.com/emarifer/portfolio_cv
rust tailwindcss wasm wasm-bindgen web-sys webassembly yew yew-framework yew-router
Last synced: about 2 months ago
JSON representation
A simple Landing Page Web Application developed with Rust/WebAssembly + Yew + Tailwindcss.
- Host: GitHub
- URL: https://github.com/emarifer/portfolio_cv
- Owner: emarifer
- License: mit
- Created: 2023-02-27T10:37:18.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-02-27T10:43:36.000Z (over 3 years ago)
- Last Synced: 2025-01-17T05:26:55.739Z (over 1 year ago)
- Topics: rust, tailwindcss, wasm, wasm-bindgen, web-sys, webassembly, yew, yew-framework, yew-router
- Language: Rust
- Homepage: https://emarifer.github.io/portfolio_cv/
- Size: 533 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# A simple Landing Page Web Application developed with Rust/WebAssembly + Yew + Tailwindcss.
## To run the app:
Add the WebAssembly target:
```
$ rustup target add wasm32-unknown-unknown
```
In order to build, bundle and send your Rust WASM application to the web, you need to install Trunk:
```
$ cargo install trunk
```
Finally, since we use the Tailwind CSS framework, we will have to run in the root of the project:
```
npm i
```
Run the app:
```
$ trunk serve
```
Build the application by running:
```
$ trunk build --release
```