Skip to content

Commit

Permalink
Fix db init failed by upyun config error (#210)
Browse files Browse the repository at this point in the history
  • Loading branch information
chunge66 authored and lisong committed Jul 16, 2019
1 parent 8ff23fa commit 07d3fc7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion .gitignore
Expand Up @@ -14,4 +14,8 @@ pids
# https://docs.npmjs.com/misc/faq#should-i-check-my-node-modules-folder-into-git
node_modules

coverage
coverage

# vs code
.history
.idea
2 changes: 1 addition & 1 deletion config/config.js
Expand Up @@ -22,7 +22,7 @@ config.development = {
},
// Config for upyun (https://www.upyun.com/) storage when storageType value is "upyun"
upyun: {
storageDir: process.evv.UPYUN_STORAGE_DIR,
storageDir: process.env.UPYUN_STORAGE_DIR,
serviceName: process.env.UPYUN_SERVICE_NAME,
operatorName: process.env.UPYUN_OPERATOR_NAME,
operatorPass: process.env.UPYUN_OPERATOR_PASS,
Expand Down

0 comments on commit 07d3fc7

Please sign in to comment.