CustomApplication And Site Creation In ERPNext To Make a New Custome App Follow below commands To Create CustomAPP $ bench new-app [CustomApp-Name] App Title (defaut: Lib Mgt): CustomApp title App Description: App for managing Articles, Members, Memberships and Transactions for Libraries App Publisher: Frappé App Email: info@frappe.io App Icon (default 'octicon octicon-file-directory'): octicon octicon-book App Color (default 'grey'): #589494 App License (default 'MIT'): GNU General Public License Setting up site First we need to add below code in my.nf Go to /etc/mysql/my.nf [mysqld] innodb-file-format=barracuda innodb-file-per-table=1 innodb-large-prefix=1 character-set-client-handshake = FALSE character-set-server = utf8mb4 collation-server = utf8mb4_unicode_ci [mysql] default-character-set = utf8mb4 To Create New Site $ bench new-site [site-name] MySQL root password: Installing frappe... U...