-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: move to
dioxus
in a self-contained PWA (#17)
* feat: dioxus * fix: use &Quote instead of cloning Quote * deps: add dioxus * deps: add dioxus Signed-off-by: Jose Storopoli <[email protected]> * chore: move code to dioxus Signed-off-by: Jose Storopoli <[email protected]> * chore: remove devcontainers Signed-off-by: Jose Storopoli <[email protected]> * update readme Signed-off-by: Jose Storopoli <[email protected]> * ci: add gh-pages Signed-off-by: Jose Storopoli <[email protected]> * chore: remove docker Signed-off-by: Jose Storopoli <[email protected]> * chore: fmt Signed-off-by: Jose Storopoli <[email protected]> --------- Signed-off-by: Jose Storopoli <[email protected]>
- Loading branch information
Showing
23 changed files
with
2,872 additions
and
699 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,32 @@ | ||
name: GitHub Pages | ||
|
||
env: | ||
CARGO_TERM_COLOR: always | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
build-deploy: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
# For the push to `gh-pages` branch. | ||
contents: write | ||
pages: write | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: dtolnay/rust-toolchain@stable | ||
with: | ||
targets: wasm32-unknown-unknown | ||
- uses: Swatinem/rust-cache@v2 | ||
- name: Install Dioxus | ||
run: cargo install dioxus-cli | ||
- name: Build app | ||
run: dx build --release | ||
- name: Deploy Project 🚀 | ||
uses: JamesIves/github-pages-deploy-action@v4 | ||
with: | ||
branch: gh-pages | ||
folder: dist |
This file was deleted.
Oops, something went wrong.
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
Oops, something went wrong.