├── .gitignore ├── README.MD ├── app.js ├── bin └── www ├── config └── db.js ├── controllers ├── products.js └── users.js ├── models ├── index.js ├── product.js └── user.js ├── package.json ├── public └── stylesheets │ └── style.css ├── routes ├── api │ ├── products.js │ └── users.js ├── index.js └── users.js └── views ├── error.jade ├── index.jade └── layout.jade /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ -------------------------------------------------------------------------------- /README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suissa/poc-order-system/HEAD/README.MD -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suissa/poc-order-system/HEAD/app.js -------------------------------------------------------------------------------- /bin/www: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suissa/poc-order-system/HEAD/bin/www -------------------------------------------------------------------------------- /config/db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suissa/poc-order-system/HEAD/config/db.js -------------------------------------------------------------------------------- /controllers/products.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suissa/poc-order-system/HEAD/controllers/products.js -------------------------------------------------------------------------------- /controllers/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suissa/poc-order-system/HEAD/controllers/users.js -------------------------------------------------------------------------------- /models/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suissa/poc-order-system/HEAD/models/index.js -------------------------------------------------------------------------------- /models/product.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suissa/poc-order-system/HEAD/models/product.js -------------------------------------------------------------------------------- /models/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suissa/poc-order-system/HEAD/models/user.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suissa/poc-order-system/HEAD/package.json -------------------------------------------------------------------------------- /public/stylesheets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suissa/poc-order-system/HEAD/public/stylesheets/style.css -------------------------------------------------------------------------------- /routes/api/products.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suissa/poc-order-system/HEAD/routes/api/products.js -------------------------------------------------------------------------------- /routes/api/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suissa/poc-order-system/HEAD/routes/api/users.js -------------------------------------------------------------------------------- /routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suissa/poc-order-system/HEAD/routes/index.js -------------------------------------------------------------------------------- /routes/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suissa/poc-order-system/HEAD/routes/users.js -------------------------------------------------------------------------------- /views/error.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suissa/poc-order-system/HEAD/views/error.jade -------------------------------------------------------------------------------- /views/index.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suissa/poc-order-system/HEAD/views/index.jade -------------------------------------------------------------------------------- /views/layout.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suissa/poc-order-system/HEAD/views/layout.jade --------------------------------------------------------------------------------