An open API service indexing awesome lists of open source software.

https://github.com/emarifer/youtube_search

Web application developed with Rust/WebAssembly + Yew + Tailwindcss.
https://github.com/emarifer/youtube_search

rust tailwindcss trunk wasm wasm-bindgen yew yew-framework

Last synced: 3 months ago
JSON representation

Web application developed with Rust/WebAssembly + Yew + Tailwindcss.

Awesome Lists containing this project

README

          

# Web application developed with Rust/WebAssembly + Yew + Tailwindcss.

## To run the app:

Add the WebAssembly target::

```
$ rustup target add wasm32-unknown-unknown
```

Install Trunk to run the app:

```
$ cargo install trunk
```

Add your Youtube api key in the env.rs file:

```
pub static API_KEY: &str = "TU_API_KEY";
```

Run the app:

```
$ trunk serve
```

Build the application by running:

```
$ trunk build --release
```