include static folder and update path for different machines

This commit is contained in:
Yisroel Baum 2024-09-29 15:02:31 +03:00
parent 3bc413916c
commit d9f0b90474
29 changed files with 13 additions and 6 deletions

View file

@ -6,10 +6,10 @@ import os
def engineer():
path1 = 'C:/Users/Lenovo/Desktop/BudgetingApp/instance/site.db'
# path2 = ''
path2 = '/home/yisroel2/Desktop/budgetingApp/instance/site.db'
# path3 = ''
for p in [path1]:
for p in [path1, path2]:
if os.path.exists(p):
path = p
break