Initial ERPNext custom app scaffold

This commit is contained in:
Ty Reynolds
2026-01-02 09:45:03 -05:00
commit 61bd56e6da
6 changed files with 11 additions and 0 deletions

0
MANIFEST.in Normal file
View File

0
ns_app/__init__.py Normal file
View File

10
ns_app/hooks.py Normal file
View File

@@ -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"
]

View File

@@ -0,0 +1 @@
console.log("NS App loaded");

0
pyproject.toml Normal file
View File

0
setup.py Normal file
View File