Skip to content

Commit

Permalink
Merge pull request #24 from gyarasu/develop
Browse files Browse the repository at this point in the history
Update Nuxt to v2.8.1
  • Loading branch information
gyarasu authored Jun 15, 2019
2 parents d39d0bc + e85e56a commit e857876
Show file tree
Hide file tree
Showing 5 changed files with 1,386 additions and 1,402 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,6 @@ $ yarn start
## Run Cluster Mode

```bash
$ pm2 start pm2.config.yml --env production
$ pm2 startOrRestart ecosystem.config.js --env production
```

15 changes: 15 additions & 0 deletions ecosystem.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
module.exports = {
apps: [{
name: 'nft-app',
script: 'npm',
args: 'run start',
exec_mode: 'cluster',
instances: 0,
log_date_format: 'YYYY-MM-DD HH:mm Z',
instance_var: 'MYAPP',
env_production: {
PORT: 3000,
NODE_ENV: 'production'
},
}],
};
30 changes: 15 additions & 15 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,27 +7,27 @@
"scripts": {
"dev": "NODE_ENV=development nuxt",
"build": "nuxt build",
"start": "cross-env NODE_ENV=production nuxt start",
"start": "nuxt start",
"generate": "nuxt generate",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"precommit": "npm run lint"
},
"dependencies": {
"@nuxtjs/axios": "^5.4.1",
"body-parser": "^1.18.3",
"config": "^2.0.1",
"express": "^4.16.4",
"express-mysql-session": "^2.0.1",
"express-session": "^1.15.6",
"log4js": "^3.0.6",
"mysql": "^2.16.0",
"nuxt": "^2.6.0"
"@nuxtjs/axios": "^5.5.4",
"body-parser": "^1.19.0",
"config": "^3.1.0",
"express": "^4.17.1",
"express-mysql-session": "^2.1.0",
"express-session": "^1.16.2",
"log4js": "^4.3.1",
"mysql": "^2.17.1",
"nuxt": "^2.8.1"
},
"devDependencies": {
"babel-eslint": "^8.2.1",
"eslint": "^4.15.0",
"eslint-friendly-formatter": "^3.0.0",
"eslint-loader": "^2.1.1",
"eslint-plugin-vue": "^4.0.0"
"babel-eslint": "^10.0.1",
"eslint": "^5.16.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-loader": "^2.1.2",
"eslint-plugin-vue": "^5.2.2"
}
}
10 changes: 0 additions & 10 deletions pm2.config.yml

This file was deleted.

Loading

0 comments on commit e857876

Please sign in to comment.