├── Gulpfile.js ├── Readme.md ├── app ├── assets │ └── css │ │ └── style.css ├── index.html ├── main.js ├── package.json └── scripts │ ├── app.js │ └── customer │ ├── customer.html │ ├── customerController.js │ └── customerService.js ├── bower.json ├── buil.windows.js ├── package.json └── resources └── windows ├── banner.bmp ├── icon.ico ├── installer.nsi ├── installer.nsis └── setup-icon.ico /Gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasimea/ElectronAngular/HEAD/Gulpfile.js -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasimea/ElectronAngular/HEAD/Readme.md -------------------------------------------------------------------------------- /app/assets/css/style.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasimea/ElectronAngular/HEAD/app/index.html -------------------------------------------------------------------------------- /app/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasimea/ElectronAngular/HEAD/app/main.js -------------------------------------------------------------------------------- /app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasimea/ElectronAngular/HEAD/app/package.json -------------------------------------------------------------------------------- /app/scripts/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasimea/ElectronAngular/HEAD/app/scripts/app.js -------------------------------------------------------------------------------- /app/scripts/customer/customer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasimea/ElectronAngular/HEAD/app/scripts/customer/customer.html -------------------------------------------------------------------------------- /app/scripts/customer/customerController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasimea/ElectronAngular/HEAD/app/scripts/customer/customerController.js -------------------------------------------------------------------------------- /app/scripts/customer/customerService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasimea/ElectronAngular/HEAD/app/scripts/customer/customerService.js -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasimea/ElectronAngular/HEAD/bower.json -------------------------------------------------------------------------------- /buil.windows.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasimea/ElectronAngular/HEAD/buil.windows.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasimea/ElectronAngular/HEAD/package.json -------------------------------------------------------------------------------- /resources/windows/banner.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasimea/ElectronAngular/HEAD/resources/windows/banner.bmp -------------------------------------------------------------------------------- /resources/windows/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasimea/ElectronAngular/HEAD/resources/windows/icon.ico -------------------------------------------------------------------------------- /resources/windows/installer.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasimea/ElectronAngular/HEAD/resources/windows/installer.nsi -------------------------------------------------------------------------------- /resources/windows/installer.nsis: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/windows/setup-icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasimea/ElectronAngular/HEAD/resources/windows/setup-icon.ico --------------------------------------------------------------------------------