Merge branch 'dbpath_hotfix' into 'dev'

adding creation of app/config/db directory to helper so if it's not there,it will be created

See merge request crafty-controller/crafty-commander!9
This commit is contained in:
Phillip Tarrant 2020-12-11 15:17:29 +00:00
commit aab743b901

View File

@ -39,6 +39,7 @@ class Helpers:
self.session_file = os.path.join(self.root_dir, 'app', 'config', 'session.lock')
self.settings_file = os.path.join(self.root_dir, 'app', 'config', 'config.json')
self.ensure_dir_exists(os.path.join(self.root_dir, 'app', 'config', 'db'))
self.db_path = os.path.join(self.root_dir, 'app', 'config', 'db', 'crafty.sqlite')
self.serverjar_cache = os.path.join(self.config_dir, 'serverjars.json')
self.passhasher = PasswordHasher()