Skip to content

Commit

Permalink
add firebase, fix readme
Browse files Browse the repository at this point in the history
  • Loading branch information
ranile committed Oct 10, 2020
1 parent 247b95e commit be04aa7
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 3 deletions.
5 changes: 5 additions & 0 deletions .firebaserc
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"projects": {
"default": "yew-material"
}
}
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ html! {
## Getting started
### Installation

Currently, this library can only be imported via git. In the future, it'll be available from crates.io.
Currently, this library can only be imported via git. In the future, it'll be available from crates.io.
`Cargo.toml`:
```toml
[dependencies]
material-yew-components = { git = "https://github.com/hamza1311/material-yew-components/", branch = "master" }
```
Material icons and a Material font can also be imported for full functionality.
Material icons and a Material font can also be imported for full functionality.
`index.html`:
```html
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500" rel="stylesheet">
Expand All @@ -35,7 +35,7 @@ These components respect the theming applied to Material Web Components using st

## Documentation

Full API documentation can be found here. Demos of components can be found here.
Full API documentation can be found [here](). Demos of components can be found [here](https://yew-material.web.app/).

## Contributing

Expand Down
16 changes: 16 additions & 0 deletions firebase.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"hosting": {
"public": "website/dist",
"ignore": [
"firebase.json",
"**/.*",
"**/node_modules/**"
],
"rewrites": [
{
"source": "**",
"destination": "/index.html"
}
]
}
}

0 comments on commit be04aa7

Please sign in to comment.