I've installed my app on a new machine running the latest stable version of Tethys, but have noticed that it is using a legacy version of my app that I was able to track down. My app structure is
tethysapp-my_app
- build
- lib
- tethysapp
- my_app
...
- tethysapp
- my_app
...
.gitignore
__init__.py
setup.py
The build path has not been updated with development changes like the outer tethysapp path has. With my already installed app, I have no issues with running updates to the app, but with this most recent installation, it seems to just want to use the old code found in tethysapp-my_app/build/. Any ideas on how to get it to start using the other directory path?