Skip to content

Latest commit

 

History

History
59 lines (40 loc) · 1.1 KB

README.md

File metadata and controls

59 lines (40 loc) · 1.1 KB

OpenMarket

Build Status Desktop application to administrate a generic market with stocks, products, categories etc...

Requirements

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

Getting started

To start the application:

    npm run dev

Packaging

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]

Further commands

To run the application without packaging run

$ npm run build
$ npm start

To run Tests

$ npm run test-all