Aucune description

Lee Morgan 5dd63fc184 Bug fix: ingredientTotals were calculated in base units. il y a 5 ans
controllers 68073fbcbb Bug fix: updating merchant address was hanging the site. il y a 5 ans
emails d711a85018 Change password reset email to be mostly plaintext. il y a 5 ans
models e895e493ab Add hidden field to backend recipe model. il y a 5 ans
views 5dd63fc184 Bug fix: ingredientTotals were calculated in base units. il y a 5 ans
.gitignore d9ffe84979 Add cssmerger so that I can modularize the css. il y a 5 ans
README.md e0c3a4cc74 Update README il y a 5 ans
app.js 4b4e5ab145 Remove browserify. il y a 5 ans
middleware.js 47d0d29945 Users can now log in. il y a 5 ans
package-lock.json 4b4e5ab145 Remove browserify. il y a 5 ans
package.json 4b4e5ab145 Remove browserify. il y a 5 ans
routes.js b1ff26c941 Add ability to toggle hidden status of recipes on both backend and frontend. il y a 5 ans
validator.js b6bd335d90 Add backend for creating and setting up new merchant from square. il y a 5 ans

README.md

Subline Inventory Management

Introduction

Subline Inventory Management is a system for companies to track, update and manage their inventory in real time. It is also a tool for gathering and analyzing data on inventory in order to better manage future costs and reduce food waste for restaurants.

The project is a hybrid single page app. After log in, users are given a single page app for interacting with the platform. Everything other than that (landing page, log in, help, etc.) is a more traditional website.

Technologies

  • HTML (ejs)
  • CSS
  • Nodejs
  • Javascript
  • MongoDB

NPM packages

  • axios
  • bcryptjs
  • compression
  • cookie-session
  • ejs
  • express
  • mailgun-js
  • mongoose
  • browserify (dev)
  • watchify (dev)

Setup

  1. Install MongoDB https://docs.mongodb.com/manual/installation/

  2. Ensure node is installed. Install if not. Version 10 or higher. $ node --version https://nodejs.org/en/

  3. $ git clone https://github.com/The-Subline/Inventory-Management.git

  4. $ npm install

  5. $ npm install -g nodemon (only if you are developing or adding code)

  6. Create two environment variables: PORT="8080" SUBLINE_DB="mongodb://localhost/InventoryManagement" SITE="localhost:8080" NODE_ENV="development

    Mac/Linux Instructions:

    1. Open '.bashrc' or .bash_profile' from the home directory
    2. Type the two variables at the bottom file
    3. Save file
    4. Close and re-open terminal

    Windows Instructions: https://ubuntu.com/download/desktop

  7. $ sudo service mongod start

  8. $ nodemon app.js (if developing) $ node app.js (to view)

  9. Open a browser and go to 'localhost:8080'