From 61bd56e6da4d32127629ed4a4f7313a428de0958 Mon Sep 17 00:00:00 2001 From: Ty Reynolds Date: Fri, 2 Jan 2026 09:45:03 -0500 Subject: [PATCH] Initial ERPNext custom app scaffold --- MANIFEST.in | 0 ns_app/__init__.py | 0 ns_app/hooks.py | 10 ++++++++++ ns_app/public/js/custom.js | 1 + pyproject.toml | 0 setup.py | 0 6 files changed, 11 insertions(+) create mode 100644 MANIFEST.in create mode 100644 ns_app/__init__.py create mode 100644 ns_app/hooks.py create mode 100644 ns_app/public/js/custom.js create mode 100644 pyproject.toml create mode 100644 setup.py diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..e69de29 diff --git a/ns_app/__init__.py b/ns_app/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/ns_app/hooks.py b/ns_app/hooks.py new file mode 100644 index 0000000..3cfa4f4 --- /dev/null +++ b/ns_app/hooks.py @@ -0,0 +1,10 @@ +app_name = "ns_app" +app_title = "NS App" +app_publisher = "NS Innovations" +app_description = "Custom ERPNext extensions" +app_email = "dev@nsinnovations.net" +app_license = "MIT" + +app_include_js = [ + "/assets/ns_app/js/custom.js" +] diff --git a/ns_app/public/js/custom.js b/ns_app/public/js/custom.js new file mode 100644 index 0000000..1f96856 --- /dev/null +++ b/ns_app/public/js/custom.js @@ -0,0 +1 @@ +console.log("NS App loaded"); diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..e69de29 diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..e69de29