Last active
July 25, 2017 22:01
-
-
Save ZephiroRB/1c7e93601f2d4d695861 to your computer and use it in GitHub Desktop.
Express + sequelize + Postgresql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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