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 installTo start the application:
npm run devTo package apps for the local platform:
$ npm run packageTo package apps for all platforms:
First, refer to Multi Platform Build for dependencies.
Then,
$ npm run package-allTo package apps with options:
$ npm run package -- --[option]To run the application without packaging run
$ npm run build
$ npm startTo run Tests
$ npm run test-all