Skip to content

mjosephmiller/makersbnb

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

34 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

nodeAbode!

Creating the databases

  • create your config.json file in:
  • ./server/config.json
  • fill in config.json with the following:
{
  "development": {
    "username": "DB_SUPERUSER",
    "password": "DB_SUPERUSER_PW",
    "database": "DB_NAME",
    "host": "127.0.0.1",
    "port": "5432",
    "dialect": "postgres"
  },
  "test": {
    "username": "DB_SUPERUSER",
    "password": "DB_SUPERUSER_PW",
    "database": "DB_NAME",
    "host": "127.0.0.1",
    "port": "5432",
    "dialect": "postgres"
  }
}
  • run your DB migrate using:
  • node_modules/.bin/sequelize db:migrate

An Airbnb clone built by Jason Luong, Jess Astbury and Mike Miller

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 86.5%
  • CSS 13.5%