izumi
izumi copied to clipboard
Rethink our approach to configurations
typesafe-config
causes several problems:
- We have to customize
pureconfig
heavily -
typesafe-config
andpureconfig
are not available outside of JVM
Essentially we have at least 2 options to make our config extension working on SJS:
- We may use https://github.com/ekrich/sconfig for both JVM and SJS. Pureconfig still would have to be re-implemented
- We may use native JSON objects on SJS and rely on
circe
to decode them.
This issue is a continuation of #1290