Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ZephiroRB/1c7e93601f2d4d695861 to your computer and use it in GitHub Desktop.
Save ZephiroRB/1c7e93601f2d4d695861 to your computer and use it in GitHub Desktop.
Express + sequelize + Postgresql
npm install -g express express-generator
express zephiro
npm install sequelize sequelize-cli pg pg-hstore --save
node_modules/.bin/sequelize init
node_modules/.bin/sequelize model:create --name User --attributes "email:string, fullname:string, username:string, password:string"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment