The 0.22.0 version of superset is currently in development.
I am looking for a handy way to change the code in the jsx file and see how it actually works and works.
For example, line 59 of $ SUPERSET_HOME / superset / assets / javascript / addSlice / AddSliceContainer.jsx file looks like this:
{t ('Choose a datasource')}
I want to change this as follows.
{t ('Choose a DATABASE')}
And when I save and refresh it, the changes do not take effect. Restarting superset runserver does not work either.
In order to apply this, I did the following:
- Go to the $ SUPERSET_HOME / superset / assets folder
- Run the yarn run build again
- Go to $ SUPERSET_HOME folder
- Run python setup.py install again
- Run the superset runserver again
I was able to verify that my jsx changes were applied after I did the above. But I think this process is too inefficient and time consuming. And I believe there will be a good way to check my changes without repeating the above process.
I am concerned that it may be related to configuration files such as webpack or package.json, but I do not know for sure.
But I have no idea about it.