-
|
Hi Misty and everyone! I've managed to use the I'm currently at the stage of deployment - as in, I want to have my Yew Frontend deployed somewhere. I was wondering if there was an easy way to do this?
Any tips and tricks to get this deployed would be sincerely appreciated! Thanks zzhacks team :) (Of course, willing to provide any information required, in case this comment wasn't very descriptive) Sincerely, |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
|
Here's a link to my fork at the moment! Quite a bit of work to go, but I'm happy with the progress I've made so far 😄 |
Beta Was this translation helpful? Give feedback.
-
|
Hey! Andnasnd thank u for following zzhack and forked this repo to create ur own site, I'm glad someone make zzhack's code work :D The However, having trigger build action(trunk build) before each deployment is a pain in the ass, so I put these actions(just like install deps -> build -> deploy) on CI, as u can see the -- Actually, I'm working on zzhack-cli lol, which can fast generate a static site using zzhack template with just a few commands, but it's experimental, you can use it carefully. Also if u want, u can contribute PR or ur ideas to get it ready for release! lol Hope the above information can help u. Mist |
Beta Was this translation helpful? Give feedback.
Hey! Andnasnd thank u for following zzhack and forked this repo to create ur own site, I'm glad someone make zzhack's code work :D
The
vercel.jsonis used to be parsed by Vercel, and the Vercel will deploy it in a serverless container I guess. But as u see, the Vercel is not provided templates like Yew/Rust or something, but Vercel still can easier to deploy static files like HTML/CSS/JS, so u need to runtrunk buildto build dist files before, and try to deploy these dists files on Vercel.However, having trigger build action(trunk build) before each deployment is a pain in the ass, so I put these actions(just like install deps -> build -> deploy) on CI, as u can see the
.github/workflows…