This is a local store stock management application built with Electron.js. It's designed to manage the stock of a local store. After a sale, the application automatically updates the stock.
Follow these steps to get the application running on your local machine:
- Clone this repository:
git clone git@github.com:umerfarok/store-management.git
- Navigate into the project directory:
cd store-management
- Install the dependencies:
npm install
- Start the application:
npm start
This document provides instructions on how to run the application in debug mode on both Unix-based systems (like Linux or macOS) and Windows.
npm run start -- --inspect-electron
To run the application in debug mode on Unix-based systems, use the DEBUG
environment variable. Set it to electron-forge:*
before running your command. Here's how you can do it:
DEBUG=electron-forge:* npm run start
On Windows, you can set environment variables using the set command before running your command. Here's how you can do it:
set DEBUG=electron-forge:* && npm run start
After running npm start
, a new window will open with the application running.