If I want to add my feature & experiment defin...
# ask-questions
f
If I want to add my feature & experiment definition to my web app bundle (for a variety of reasons), what is the best way of going about it. My plan was create a CI job that pulled the feature & experiments via the API and write them to a file when we do a build and then load it as a
payload
during
init()
. However, the data appears to be in different formats. I’m currently going down the road of writing a transformer, but before I do, i wanted to see if there was a better or more idiomatic way.
I’ve ended up writing a node js script that can be run in CI and fetch the payload & writes it to a json object that is later imported into
init
🙌 1