jblau07 / final_project

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Recipe App

Config File

  • Create a config.js file in the db directory within the server directory for storing user and database information.
Use template below in db/config.js

module.exports ={

    user: 'insertuser',
    password: 'insertpassword',
    database: 'insertdatabase'
  }
Use template below in src/config.js

module.exports = {
  api: {
    upc: "api_key=CODE",
    ndbno: "api_key=CODE"
  }
};

About


Languages

Language:JavaScript 98.1%Language:HTML 1.9%