Caution
ALL VERSIONS OF SIM FOUND IN THIS REPOSITORY ARE DEPRECATED AND UNSAFE TO RUN. FOR THE REWRITE, LOOK HERE
SIM is a Shop Inventory Manager, a simple web tool to manage a shop's inventory. It is written in Svelte and uses a Postgres database. With SIM, you simply add the product to the inventory and when it is time to waste the product, it will be displayed.
- Simple Product management (add, edit, delete)
- At-a-glance list of products to be wasted
- Simple and clean UI
- Lists of all products and all wasted products
- Clone the repository
git clone https://github.com/RJMurg/SIM.git- Install dependencies
npm install- Create a .env file in the root directory and add the following:
DATABASE_URL=postgres://<username>:<password>@<host>:<port>/<database>- Run the app
npm run dev