norux / app-manager

MIT License
2 stars 1 forks source link

AM

AM is application management tool in server

Quick start

Install dependency packages.

npm install

And default start. (with devtools)

npm start # or npm run start:dev

Here's production start. (without dev-tool)

npm run start:prod

How to Build

Create portable application.

Following available output platform.

Default build. (Build all platform)

npm run build # or npm run build:all

Output 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