John Aoussou
08/16/2022, 12:39 PMRobert Jaros
08/16/2022, 12:45 PMJohn Aoussou
08/16/2022, 12:48 PMRobert Jaros
08/16/2022, 12:52 PMJohn Aoussou
08/16/2022, 1:03 PMCompose website (or any other Kotlin/JS app) is just a bunch of static files (html, js, css, images etc). You don't need Heroku, AWS or any other dynamic hosting. Any static hosting (e.g. netlify, github pages) is enough.I guess I'm looking for a tutorial to do that then.
Big Chungus
08/16/2022, 1:10 PMCasey Brooks
08/16/2022, 10:46 PM./gradlew build
, and then use the Deploy To GitHub Pages Action to point to the build/distributions/
folder, which contains everything you need for your Compose/Web app to run without needing a full backend. You can view the workflow file in the repo to see that there’s not much to ithfhbd
08/18/2022, 9:54 PM