Skip to content

Commit 2fbe176

Browse files
authored
Merge branch 'master' into dependabot/npm_and_yarn/node-fetch-2.6.1
2 parents c1f607e + 7263217 commit 2fbe176

File tree

4 files changed

+12
-30
lines changed

4 files changed

+12
-30
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ app.get('/', (req, res) => {
107107
app.listen(process.env.PORT || 8123);
108108
```
109109

110-
7. Update the `main` field in `package.json` with the filename of your app entry point: `"main": "app.js"`
110+
7. Update the `scripts` section in `package.json` with your app entry point command, under `start`: `"start": "node app.js"`
111111
8. Run `git add .`
112112
9. Run `git commit -m "Initial Commit"`
113113
10. Run `git push origin master`

package-lock.json

Lines changed: 9 additions & 27 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
"dotenv": "^8.1.0",
4242
"ejs": "^2.6.2",
4343
"express": "^4.17.1",
44-
"http-proxy": "^1.18.0",
44+
"http-proxy": "^1.18.1",
4545
"husky": "^3.0.3",
4646
"namecheap-api": "^1.0.5",
4747
"node-fetch": "^2.6.1",

src/helpers/docker.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ const createContainer = async (
6666
]
6767
}
6868
},
69-
Cmd: ['node', '.']
69+
Cmd: ['npm', 'run', 'start']
7070
})
7171
.then(container => container.id)
7272
.catch(err => err)

0 commit comments

Comments
 (0)