applications

This commit is contained in:
2023-11-20 06:44:44 +03:00
parent 57bb4fd5e4
commit 21313f053b
5 changed files with 76 additions and 0 deletions

View File

@@ -7,3 +7,7 @@ APP_PATH = os.path.dirname(sys.executable) if getattr(sys, 'frozen', False) else
LOGGER_NAME = 'assemblr'
LOG_FILE = Path(APP_PATH) / Path(f'{LOGGER_NAME}.log')
MAX_LOG_FILE_SIZE_BYTES = 400 * 1024 ** 2
APKS_PATH = os.path.join(APP_PATH, 'apks')
if not os.path.isdir(APKS_PATH):
os.mkdir(APKS_PATH)