taylonr / postman

MIT License
112 stars 238 forks source link

Unable to create DB #1

Closed ckageni1 closed 6 years ago

ckageni1 commented 6 years ago

Unable to create DB. Reference below for the error. Please advise.

ERROR: Error reading "server\config\config.json". Error: SyntaxError: C:\Users\Charles\Desktop\Postman\postman-master\server\config\config.json: Unexpected token c in JSON at position 65

npm ERR! code ELIFECYCLE npm ERR! errno 1 npm ERR! postman@0.0.0 db:create: sequelize db:create && npm run db:migrate && npm run db:seed npm ERR! Exit status 1 npm ERR! npm ERR! Failed at the postman@0.0.0 db:create script. npm ERR! This is probably not a problem with npm. There is likely additional logging output above.

npm ERR! A complete log of this run can be found in: npm ERR! C:\Users\Charles\AppData\Roaming\npm-cache_logs\2018-01-03T01_46_34_576Z-debug.log

C:\Users\Charles\Desktop\Postman\postman-master\server\config>npm install openssl config failed: error:02001003:system library:fopen:No such process npm WARN rollback Rolling back node-pre-gyp@0.6.36 failed (this is probably harmless): EPERM: operation not permitted, rmdir 'C:\Users\Charles\Desktop\Postman\postman-master\node_modules\fsevents\node_modules' npm WARN optional SKIPPING OPTIONAL DEPENDENCY: fsevents@1.1.2 (node_modules\fsevents): npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for fsevents@1.1.2: wanted {"os":"darwin","arch":"any"} (current: {"os":"win32","arch":"x64"})

taylonr commented 6 years ago

C:\Users\Charles\Desktop\Postman\postman-master\server\config\config.json: Unexpected token c in JSON at position 65

Can you post what your config.json file looks like?

ckageni1 commented 6 years ago

{ "development": { "username": "postgres", "password": chuck, "database": "postman_dev", "host": "localhost", "port": 5432, "dialect": "postgres" }, "test": { "username": "postgres", "password": chuck, "database": "postman_test", "host": "localhost", "port": 5432, "dialect": "postgres" } }

taylonr commented 6 years ago

The problem is, you need to surround chuck in quotes, like "chuck" similar to how "postgres" or "postman_dev".

ckageni1 commented 6 years ago

Excellent that worked. Thank you !

taylonr commented 4 years ago

What error are you getting?

andrew-lundy commented 4 years ago

What error are you getting?

Nevermind, fixed it. Thanks.