-
Notifications
You must be signed in to change notification settings - Fork 32
create
Xieyt edited this page Oct 30, 2023
·
7 revisions
Create a new site.
Frappe will be installed by default.
Usage:
$ fm create [OPTIONS] SITENAME
Arguments:
-
SITENAME
: Name of the site [required]
Options:
-
-a, --apps TEXT
: FrappeVerse apps to install. App should be specified in format : or . -
--developer-mode / --no-developer-mode
: Enable developer mode [default: developer-mode] -
--frappe-branch TEXT
: Specify the branch name for frappe app [default: version-14] -
--admin-pass TEXT
: Default Password for the standard 'Administrator' User. This will be used as the password for the Administrator User for all new sites [default: admin] -
--enable-ssl / --no-enable-ssl
: Enable https [default: no-enable-ssl] -
--help
: Show this message and exit.
Examples:
create example.localhost site with only frappe, version -> version-15
fm create example
create example.localhost site with only frappe, version -> develop
fm create example --frappe-branch develop
create example.localhost site with frappe, erpnext and hrms, version -> version-15
fm create example --apps erpnext:version-15 --apps hrms:version-15