Has anyone been able to include a Python server wi...
# multiplatform
y
Has anyone been able to include a Python server within a multiplatform kotlin project of course each one Is its own project but it exists in the same project, I mentioned Python cause it is popular but the language doesn't matter it just needs to be a server that I can run locally and use rest API to communicate with it. something like this https://github.com/M-Schrapel/Python-Server-for-Android
h
you can include it in a separate folder just as you do have now, i don’t see the problem with it? All the configs, how to run the server and setup is within that folder and has no interaction with the rest of the project structure except that you do expose API interfaces that your KMP android/ios apps consume, in that regard you’re sharing nothing, it’ll be like having two different repos into one
thank you color 1