Skip to content

Latest commit

 

History

History
156 lines (118 loc) · 3.77 KB

readme.md

File metadata and controls

156 lines (118 loc) · 3.77 KB

InventoryManager

Business backend logic for Gravity

Setting up

Clone the git repository to your machine using ssh.

$ git clone git@github.com:reactivepixel/Gravity.git
$ npm install //Installs the package.json file.

Database Installation

Installing MySQL & adding .env file

Check to see if you have MySQL installed on your machine.

$ mysql --version

If MySQL is not installed. Install it with Homebrew.

$ brew install mysql

Start MySQL server.

$ mysql.server start //Starting MySQL server.
$ mysql -u root //Logging in as root.

Once logged into MySQL.

mysql> create database gravity;

Create an .env file in your root directory.

$ touch .env

//Add this to the .env file
DB_HOST=localhost
DB_NAME=gravity
DB_USER={local user} //Default root unless otherwise specified.
DB_PASS={local password} //Standard install is set to blank.
DB_PORT={local port running mysql} //Standard port is 3306.

If MySQL does not work try:

$ mysql.server restart

Server Environments

Here are the links to all the Environments

Development

Link to Development.

Staging

Link to Staging.

Production

Link to Production

API Documentation

Order

Create

Endpoint Method Development Status
/order PUT In Production
Request
{
  units: [
    {
    sku: 'a5296ab9-9eee-7ba0-0a79-b801594f2c91',
    quantity: 1},
    {
    sku: 'a5296ab9-9eee-7ba0-0a79-b801594f2c91',
    quantity: 1}
  ],
  recipients: {
    name: 'John Doe',
    address:{
      street: '3300 University Blvd',
      city: 'Winter Park',
      state: 'FL',
      zip: '32792'
    },
    phone: '555-555-5555',
    email: 'jdoe@gmail.com'
  }
}
Response
{
  units: [
    {
    sku: 'a5296ab9-9eee-7ba0-0a79-b801594f2c91',
    quantity: 1},
    {
    sku: 'a5296ab9-9eee-7ba0-0a79-b801594f2c91',
    quantity: 1}
  ],
  recipients: {
    name: 'John Doe',
    address:{
      street: '3300 University Blvd',
      city: 'Winter Park',
      state: 'FL',
      zip: '32792'
    },
    phone: '555-555-5555',
    email: 'jdoe@gmail.com'
  },
  uuid: 'generated uuid',
  timestamp: '2/12/2016 2:10:25 AM'
}

How To Adapt the Model Template

To use the Unit model as a template for building out other models you will need to adjust the definition of your model in '/server/db.js'. It must contain the appropriate fields for your model to meet the documentation. db.js is just a rough structure and will need to be adjusted.

Copy /server/models/unit.js and rename it to match your model. You will need to restructure the definitions in this file to reflect the changes you have made to /server/db.js

Documentation

Each public method in /server/models/unit.js is documented according to the AirBNB Standards. Your own adaptation of this file means you will need to document its use. In your pull request if additional information is needed for team members to understand how to use your contributions please mark it down in the description of your pull request (just like I'm doing now). Additionally, copy / paste your modifications to the /readme.md file so this can be saved for later use by other devs.

Contributing

See Contribute.md for more information on how to contribute

  1. Fork it!
  2. Create your feature branch: git checkout -b my-new-feature
  3. Commit your changes: git commit -am 'Add some feature'
  4. Push to the branch: git push origin my-new-feature
  5. Submit a pull request :D