2
0
mirror of https://github.com/frappe/frappe_docker.git synced 2024-11-09 14:50:58 +00:00

fix: worker new-site command

fixes #128
This commit is contained in:
Revant Nandgaonkar 2020-03-07 19:39:59 +05:30
parent 9cf13ef3c6
commit 07806f1086

View File

@ -6,7 +6,8 @@ site_name = os.environ.get("SITE_NAME", 'site1.localhost')
mariadb_root_username = os.environ.get("DB_ROOT_USER", 'root')
mariadb_root_password = os.environ.get("MYSQL_ROOT_PASSWORD", 'admin')
force = True if os.environ.get("FORCE", None) else False
install_apps = if os.environ.get("INSTALL_APPS").split(",") else []
install_apps = os.environ.get("INSTALL_APPS", None)
install_apps = install_apps.split(',') if install_apps else []
frappe.init(site_name, new_site=True)
_new_site(