Guest User

Untitled

a guest
Sep 29th, 2017
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 3.60 KB | None | 0 0
  1. + DB_HOST=127.0.0.1
  2. + DB_USER=root
  3. + DB_PASSWORD=root
  4. + DB_NAME=recruitment2017
  5. + npm install
  6. npm WARN ajv-keywords@2.1.0 requires a peer of ajv@>=5.0.0 but none is installed. You must install peer dependencies yourself.
  7. npm WARN eslint-plugin-import@2.2.0 requires a peer of eslint@2.x - 3.x but none is installed. You must install peer dependencies yourself.
  8. npm WARN eslint-plugin-react@6.10.3 requires a peer of eslint@^2.0.0 || ^3.0.0 but none is installed. You must install peer dependencies yourself.
  9. npm WARN optional SKIPPING OPTIONAL DEPENDENCY: fsevents@1.1.2 (node_modules/fsevents):
  10. npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for fsevents@1.1.2: wanted {"os":"darwin","arch":"any"} (current: {"os":"linux","arch":"x64"})
  11.  
  12. added 114 packages in 7.882s
  13. + cp server/config/session_config.js.sample server/config/session_config.js
  14. + cp server/config/config.js.sample server/config/config.js
  15. + cp server/config/gmail.js.sample server/config/gmail.js
  16. + sed -i 's/"username": .*/"username": "root",/g' server/config/config.js
  17. + sed -i 's/"password": .*/"password": "root",/g' server/config/config.js
  18. + sed -i 's/"database": .*/"database": "recruitment2017",/g' server/config/config.js
  19. + sed -i 's/"host": .*/"host": "127.0.0.1",/g' server/config/config.js
  20. + cd server
  21. + '[' root ']'
  22. + mysql -u root -proot -e 'Create database recruitment2017;'
  23. mysql: [Warning] Using a password on the command line interface can be insecure.
  24. + ../node_modules/.bin/sequelize db:migrate
  25.  
  26. Sequelize CLI [Node: 8.4.0, CLI: 3.0.0, ORM: 4.11.5]
  27.  
  28. WARNING: This version of Sequelize CLI is not fully compatible with Sequelize v4. https://github.com/sequelize/cli#sequelize-support
  29.  
  30. Loaded configuration file "config/config.js".
  31. Using environment "development".
  32. == *-formElements: migrating =======
  33.  
  34. ERROR: Table 'recruitment2017.Forms' doesn't exist
  35.  
  36. + ../node_modules/.bin/sequelize seed:generate --name formElements
  37.  
  38. Sequelize CLI [Node: 8.4.0, CLI: 3.0.0, ORM: 4.11.5]
  39.  
  40. WARNING: This version of Sequelize CLI is not fully compatible with Sequelize v4. https://github.com/sequelize/cli#sequelize-support
  41.  
  42. Successfully created seeders folder at "/home/shivashis/Documents/lifeLine/test/generic-applications-portal/server/seeders".
  43. New seed was created at /home/shivashis/Documents/lifeLine/test/generic-applications-portal/server/seeders/20170929161817-formElements.js .
  44. + node ../form_generator/index.js -l views/formLayout.ejs -s 'migrations/*-formElements.js' ../form_generator/sample.html
  45. + ../node_modules/.bin/sequelize db:seed:all
  46.  
  47. Sequelize CLI [Node: 8.4.0, CLI: 3.0.0, ORM: 4.11.5]
  48.  
  49. WARNING: This version of Sequelize CLI is not fully compatible with Sequelize v4. https://github.com/sequelize/cli#sequelize-support
  50.  
  51. Loaded configuration file "config/config.js".
  52. Using environment "development".
  53. == 20170929160504-formElements: migrating =======
  54. == 20170929160504-formElements: migrated (0.003s)
  55.  
  56. == 20170929160655-formElements: migrating =======
  57. == 20170929160655-formElements: migrated (0.000s)
  58.  
  59. == 20170929160722-formElements: migrating =======
  60. == 20170929160722-formElements: migrated (0.000s)
  61.  
  62. == 20170929161606-formElements: migrating =======
  63. == 20170929161606-formElements: migrated (0.000s)
  64.  
  65. == 20170929161817-formElements: migrating =======
  66. == 20170929161817-formElements: migrated (0.003s)
  67.  
  68. + node ./bin/www
  69. express-session deprecated undefined resave option; provide resave option app.js:16:9
  70. express-session deprecated undefined saveUninitialized option; provide saveUninitialized option app.js:16:9
  71. connected as id 330
  72. Executing (default): SELECT 1+1 AS result
  73. Connection successful
Add Comment
Please, Sign In to add comment