-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
SQUASH: automatic did parsing + video streaming via hls (#15)
* refactor: [SQUASH] Checkout to rupansh/new-impl feat: add automatic did parsing feat: add hls streaming via wasp-hls * refactor(root): use redirect component for root page --------- Co-authored-by: rupansh <[email protected]>
- Loading branch information
1 parent
1ae928b
commit 71ef0eb
Showing
49 changed files
with
2,399 additions
and
1,482 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -11,6 +11,3 @@ node_modules/ | |
test-results/ | ||
end2end/playwright-report/ | ||
playwright/.cache/ | ||
.env | ||
# style/ | ||
didc |
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 |
---|---|---|
@@ -1,3 +0,0 @@ | ||
[submodule "hot-or-not-backend-canister"] | ||
path = hot-or-not-backend-canister | ||
url = https://github.com/go-bazzinga/hot-or-not-backend-canister | ||
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 |
---|---|---|
@@ -1,23 +1,26 @@ | ||
{ | ||
"rust-analyzer.rustfmt.overrideCommand": [ | ||
"leptosfmt", | ||
"--stdin", | ||
"--rustfmt" | ||
], | ||
"rust-analyzer.procMacro.ignored": { | ||
"leptos_macro": ["component", "server"] | ||
}, | ||
"cssvar.files": ["./node_modules/open-props/open-props.min.css"], | ||
// Do not ignore node_modules css files, which is ignored by default | ||
"cssvar.ignore": [], | ||
"cssvar.extensions": ["html", "css"], | ||
"emmet.includeLanguages": { | ||
"rust": "html", | ||
"*.rs": "html" | ||
}, | ||
"editor.quickSuggestions": { | ||
"other": "on", | ||
"comments": "on", | ||
"strings": true | ||
} | ||
} | ||
"rust-analyzer.rustfmt.overrideCommand": [ | ||
"leptosfmt", | ||
"--stdin", | ||
"--rustfmt" | ||
], | ||
"rust-analyzer.cargo.features": "all", | ||
"rust-analyzer.check.features": "all", | ||
"emmet.includeLanguages": { | ||
"rust": "html", | ||
"*.rs": "html" | ||
}, | ||
"tailwindCSS.includeLanguages": { | ||
"rust": "html", | ||
"*.rs": "html" | ||
}, | ||
"files.associations": { | ||
"*.rs": "rust" | ||
}, | ||
"editor.quickSuggestions": { | ||
"other": "on", | ||
"comments": "on", | ||
"strings": true | ||
}, | ||
"css.validate": false | ||
} |
Oops, something went wrong.