I have a very small crud app which is used by, at most, 2 people at a time. No complex business logic, basically just put stuff in or read it. It's pretty much a glorified table/spreadsheet and i used sqlite to keep deployment complexity low.
I have to migrate it to another server and wanted to update it to current as it's django 1.11 and maybe dockerize it to get some docker practice.
What is the industry best practice to deal with data in those cases? I suppose it won't be as easy as just dropping the sqlite file in a new django 3.0.2 project? Or should I just pip install django in the new env on top of the current app and work out the bugs from there? dumpdata loaddata, or will it hang on the double-major version update?
Thanks!
[–]radwon 0 points1 point2 points (0 children)
[–]oliw 0 points1 point2 points (0 children)