Skip to content

Commit

Permalink
enable updater in prod
Browse files Browse the repository at this point in the history
  • Loading branch information
BenediktMKuehne committed Jul 11, 2024
1 parent 80385a4 commit 745dbb4
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
11 changes: 10 additions & 1 deletion embark/embark/settings/deploy.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@

from dotenv import load_dotenv

from embark.helper import get_version_strings

# load .env file
load_dotenv()

Expand Down Expand Up @@ -56,7 +58,8 @@
'reporter',
'dashboard',
'tracker',
'porter'
'porter',
'updater'
]

AUTH_USER_MODEL = 'users.User'
Expand Down Expand Up @@ -193,6 +196,10 @@
'handlers': ['debug_handler', 'info_handler', 'console_handler'],
'level': 'INFO',
},
'updater': {
'handlers': ['debug_handler', 'info_handler', 'console_handler'],
'level': 'DEBUG',
},
'embark': {
'handlers': ['debug_handler', 'info_handler', 'console_handler'],
'level': 'INFO',
Expand Down Expand Up @@ -325,3 +332,5 @@ def count_emba_modules(emba_dir_path):
EMBA_P_MOD_CNT = 18
EMBA_F_MOD_CNT = 4
EMBA_L_MOD_CNT = 8

VERSION = get_version_strings()
2 changes: 1 addition & 1 deletion embark/embark/settings/dev.py
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@
'updater': {
'handlers': ['debug_handler', 'info_handler', 'console_handler'],
'level': 'DEBUG',
},
},
'uploader': {
'handlers': ['debug_handler', 'info_handler', 'console_handler'],
'level': 'DEBUG',
Expand Down

0 comments on commit 745dbb4

Please sign in to comment.