We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b327038 commit d21a695Copy full SHA for d21a695
src/cli.js
@@ -125,14 +125,14 @@ const createPackageJson = async (destDir, fileName) => {
125
126
const showInstructions = (lang) => {
127
console.info('The application has been generated!')
128
- if (argv.lang === 'js') {
+ if (lang === 'js') {
129
console.info(`Use
130
npm install
131
to install its dependencies and
132
export DB_NAME=db DB_USER=user DB_PASSWORD=secret
133
npm start
134
afteward to run`);
135
- } else if (argv.lang === 'go') {
+ } else if (lang === 'go') {
136
137
go run *.go
138
or
0 commit comments