Is there a sample project available that shows how...
# javascript
g
Is there a sample project available that shows how I need to have my build.gradle.kts file setup for multiplatform with Kotlin/Js and Kotlin/JVM?
l
I created a pure-Kontlin toy project back in September, the code is at https://github.com/frececroka/chat-roulette. Maybe stuff has changed in the meantime and it's not the official way of doing it anymore, but at least it still works.
I just realized multiplatform probably means you want to share code between server and browser. In this case just ignore my comment.
r
@gbaldeck you can take a look at KVision fullstack exampels, e.g. https://github.com/rjaros/kvision-examples/tree/master/addressbook-fullstack-ktor
g
Thanks for those. The Spring Boot one really helps.