Table of Contents

Guide – Create a new Workspace for DEVs in FrappeV17

Creating a new workspace in V17 is not available via the GUI (yet).

Therefore, to create a new workspace, do the following:
Go to the terminal on your bench and type:

bench –site yoursite.local console

ws = frappe.new_doc("Workspace")

ws.title = "App Title"

ws.label = "App Label"

ws.module = "YOUR_MODULE"

ws.public = 1

ws.is_hidden = 0

ws.insert(ignore_permissions=True)

frappe.db.commit()

exit

Afterwards, you should see your workspace in the main dashboard.

Share the Post
EN