AM is application management tool in server
Install dependency packages.
npm installAnd default start. (with devtools)
npm start # or npm run start:devHere's production start. (without dev-tool)
npm run start:prodCreate portable application.
Following available output platform.
- windows (32/64bit)
- macos (64bit)
- linux (32/64bit)
Default build. (Build all platform)
npm run build # or npm run build:allOutput application is created in Release directory.
Here's building specific platform.
npm run build:macos # create macOS binary
npm run build:windows # create windows binary
npm run build:linux # create linux binary