Desktop application to administrate a generic market with stocks, products, categories etc...
To clone and run this repository you'll need Git and Node.js (which comes with npm) installed on your computer. From your command line:
git clone https://github.com/UnexpectedSoftware/openMarket.git
cd openMarket
npm install
To start the application:
npm run dev
To package apps for the local platform:
$ npm run package
To package apps for all platforms:
First, refer to Multi Platform Build for dependencies.
Then,
$ npm run package-all
To package apps with options:
$ npm run package -- --[option]
To run the application without packaging run
$ npm run build
$ npm start
To run Tests
$ npm run test-all