Skip to content

Commit

Permalink
Merge pull request #27 from bitDaft/develop
Browse files Browse the repository at this point in the history
script fixes for production
  • Loading branch information
bitDaft authored Dec 12, 2022
2 parents d061db7 + 4f847a2 commit c9e7eb4
Show file tree
Hide file tree
Showing 3 changed files with 76 additions and 6 deletions.
68 changes: 68 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
{
"better-comments.highlightPlainText": false,
"better-comments.tags": [
{
"tag": "#",
"color": "#EB14BF",
"strikethrough": false,
"underline": false,
"backgroundColor": "transparent",
"bold": false,
"italic": false
},
{
"tag": "^",
"color": "#FBFF00",
"strikethrough": false,
"underline": false,
"backgroundColor": "transparent",
"bold": false,
"italic": false
},
{
"tag": "!",
"color": "#FF2D00",
"strikethrough": false,
"underline": false,
"backgroundColor": "transparent",
"bold": true,
"italic": false
},
{
"tag": "?",
"color": "#3498DB",
"strikethrough": false,
"underline": false,
"backgroundColor": "transparent",
"bold": false,
"italic": false
},
{
"tag": ";",
"color": "#474747",
"strikethrough": true,
"underline": false,
"backgroundColor": "transparent",
"bold": false,
"italic": false
},
{
"tag": "todo",
"color": "#FF8C00",
"strikethrough": false,
"underline": false,
"backgroundColor": "transparent",
"bold": false,
"italic": false
},
{
"tag": "*",
"color": "#98C379",
"strikethrough": false,
"underline": false,
"backgroundColor": "transparent",
"bold": false,
"italic": false
}
]
}
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -259,6 +259,7 @@ The features and structure will be explained below in sections building upon eac
- [x] Auto detection of tenant (with little initial setup work)
- [x] Complete proper documentation
- [ ] Add unit, integration test
- [ ] API versioning capability. v1, v2
- [ ] Add Multi tenancy connection example
- [ ] socket integration?
- [ ] use redis cache instead of memory cache?
13 changes: 7 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "nodejs-starter",
"version": "1.0.0",
"version": "1.0.3",
"private": true,
"type": "module",
"description": "an opinionated nodejs express starter app boilerplate",
Expand All @@ -23,12 +23,13 @@
"scripts": {
"start": "run-p prod:**",
"prod:app": "NODE_ENV=production node ./bin/www.js",
"prod:worker:mail": "NODE_ENV=production node ./jobs/worker/mail.js",
"prod:worker:general": "NODE_ENV=production node ./jobs/worker/general.js",
"startWorkerProd": "NODE_ENV=production node ./jobs/worker/worker.js -- -w",
"prod:worker:mail": "npm run startWorkerProd mail",
"prod:worker:general": "npm run startWorkerProd general",
"prod:worker:results": "npm run startWorkerProd results",
"dev-a": "run-p dev worker",
"dev": "NODE_ENV=development nodemon ./bin/www.js",
"dev-a": "NODE_ENV=development run-p dev worker",
"dev:www": "NODE_ENV=development nodemon ./bin/www.js",
"startWorker": "nodemon ./jobs/worker/worker.js -- -w",
"startWorker": "NODE_ENV=development nodemon ./jobs/worker/worker.js -- -w",
"worker": "run-p worker:*",
"worker:mail": "npm run startWorker mail",
"worker:general": "npm run startWorker general",
Expand Down

0 comments on commit c9e7eb4

Please sign in to comment.