mirror of
https://github.com/frappe/frappe_docker.git
synced 2026-06-22 15:55:09 +00:00
parent
9cf13ef3c6
commit
07806f1086
1 changed files with 2 additions and 1 deletions
|
|
@ -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_username = os.environ.get("DB_ROOT_USER", 'root')
|
||||||
mariadb_root_password = os.environ.get("MYSQL_ROOT_PASSWORD", 'admin')
|
mariadb_root_password = os.environ.get("MYSQL_ROOT_PASSWORD", 'admin')
|
||||||
force = True if os.environ.get("FORCE", None) else False
|
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)
|
frappe.init(site_name, new_site=True)
|
||||||
|
|
||||||
_new_site(
|
_new_site(
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue