├── README.md ├── check └── check.sh ├── create ├── create.sh ├── create_marker.py ├── database.sh └── vars.sh ├── find └── find.sh ├── lifecycle ├── lifecycle.sh ├── start_app.sh └── stop_app.sh ├── migrate.sh ├── prompt └── prompt.sh ├── pvc ├── cleanup.sh ├── info.sh ├── levenshtein.py ├── match.sh └── rename.sh └── self-update └── self-update.sh /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heavybullets8/TT-Migration/HEAD/README.md -------------------------------------------------------------------------------- /check/check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heavybullets8/TT-Migration/HEAD/check/check.sh -------------------------------------------------------------------------------- /create/create.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heavybullets8/TT-Migration/HEAD/create/create.sh -------------------------------------------------------------------------------- /create/create_marker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heavybullets8/TT-Migration/HEAD/create/create_marker.py -------------------------------------------------------------------------------- /create/database.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heavybullets8/TT-Migration/HEAD/create/database.sh -------------------------------------------------------------------------------- /create/vars.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heavybullets8/TT-Migration/HEAD/create/vars.sh -------------------------------------------------------------------------------- /find/find.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heavybullets8/TT-Migration/HEAD/find/find.sh -------------------------------------------------------------------------------- /lifecycle/lifecycle.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heavybullets8/TT-Migration/HEAD/lifecycle/lifecycle.sh -------------------------------------------------------------------------------- /lifecycle/start_app.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heavybullets8/TT-Migration/HEAD/lifecycle/start_app.sh -------------------------------------------------------------------------------- /lifecycle/stop_app.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heavybullets8/TT-Migration/HEAD/lifecycle/stop_app.sh -------------------------------------------------------------------------------- /migrate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heavybullets8/TT-Migration/HEAD/migrate.sh -------------------------------------------------------------------------------- /prompt/prompt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heavybullets8/TT-Migration/HEAD/prompt/prompt.sh -------------------------------------------------------------------------------- /pvc/cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heavybullets8/TT-Migration/HEAD/pvc/cleanup.sh -------------------------------------------------------------------------------- /pvc/info.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heavybullets8/TT-Migration/HEAD/pvc/info.sh -------------------------------------------------------------------------------- /pvc/levenshtein.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heavybullets8/TT-Migration/HEAD/pvc/levenshtein.py -------------------------------------------------------------------------------- /pvc/match.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heavybullets8/TT-Migration/HEAD/pvc/match.sh -------------------------------------------------------------------------------- /pvc/rename.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heavybullets8/TT-Migration/HEAD/pvc/rename.sh -------------------------------------------------------------------------------- /self-update/self-update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heavybullets8/TT-Migration/HEAD/self-update/self-update.sh --------------------------------------------------------------------------------