Modify project structure
Before, we had shared/shared
because the cross project was inside the shared
folder, which doesn't make a lot of sense.
I moved the cross-project at the root and cleaned up build.sbt
to be consistent with course-material/labs/webapp-rps
Basically:
-
server/
becomesjvm/
-
client/
becomesjs/
-
shared/shared
becomesshared/
-
shared/js
disappears (they were empty so not pushed on Gitlab but they do exist) -
shared/jvm
disappears (they were empty so not pushed on Gitlab but they do exist) -
build.sbt
gets greatly simplified - Removed unused plugin
sbt-jsdependencies
On the RPS side, almost nothing changes
Edited by Dylan Noah Vairoli