Skip to content

Commit

Permalink
Merge pull request #38 from go-bazzinga/rupansh/upload-video
Browse files Browse the repository at this point in the history
Upload post UI
  • Loading branch information
rupansh-sekar-yral authored Jan 24, 2024
2 parents 21e4cd8 + 75dbc6e commit 7235e66
Show file tree
Hide file tree
Showing 37 changed files with 1,593 additions and 44 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/deploy-to-production-on-merge-to-main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,11 @@ jobs:
name: build-musl
- run: chmod +x target/x86_64-unknown-linux-musl/release/hot-or-not-web-leptos-ssr
- uses: superfly/flyctl-actions/setup-flyctl@master
- name: Set cloudflare token
run: flyctl secrets set CF_TOKEN=$CF_TOKEN --app "hot-or-not-web-leptos-ssr" --stage
env:
CF_TOKEN: ${{ secrets.CLOUDFLARE_STREAM_IMAGES_ANALYTICS_READ_WRITE_SECRET }}
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}
- name: Deploy a docker container to Fly.io
run: flyctl deploy --remote-only
env:
Expand Down
238 changes: 234 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 9 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,16 @@ ic-agent = { version = "0.31.0", default-features = false, features = ["pem", "r
serde-wasm-bindgen = { version = "0.6.3" }
futures = "0.3.30"
leptos-use = "0.9.0"
reqwest = { version = "0.11.23", default-features = false }
reqwest = { version = "0.11.23", default-features = false, features = ["json"] }
serde_bytes = "0.11.14"
hex = "0.4.3"
leptos_icons = "0.2.1"
icondata = "0.3.0"
gloo = { version = "0.11.0", features = ["futures", "net", "net"] }
once_cell = "1.19.0"
async-trait = "0.1.77"
web-time = "1.0.0"
k256 = { version = "0.13.3", default-features = false, features = ["std"] }

[build-dependencies]
candid_parser = "0.1.1"
Expand All @@ -57,6 +62,9 @@ ssr = [
"leptos-use/ssr",
"reqwest/rustls-tls",
]
cloudflare = []
release-bin = ["ssr", "cloudflare"]
release-lib = ["hydrate", "cloudflare"]

# Defines a size-optimized profile for the WASM bundle in release mode
[profile.wasm-release]
Expand Down
Loading

0 comments on commit 7235e66

Please sign in to comment.