You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have my aws credentials configured with aws configure properly.
I have executed the make buildAll command succesfully throw the ./backend folder
$ make buildAll
[*] Building....
make[1]: Entering directory '/home/nicholas/Desktop/Serverless-Nodejs/sls-express-dynamo-tutorial/sls-microservice/backend'
yarn install
yarn install v1.22.5
warning package.json: No license field
warning [email protected]: No license field
[1/4] Resolving packages...
success Already up-to-date.
Done in 0.24s.
Building ./src/_root...
yarn install v1.22.5
warning package.json: No license field
warning ../../package.json: No license field
warning No license field
[1/4] Resolving packages...
success Already up-to-date.
Done in 0.08s.
Building ./src/orders...
yarn install v1.22.5
warning package.json: No license field
warning ../../package.json: No license field
warning No license field
[1/4] Resolving packages...
success Already up-to-date.
Done in 0.08s.
cd ../api && make buildAll
make[2]: Entering directory '/home/nicholas/Desktop/Serverless-Nodejs/sls-express-dynamo-tutorial/sls-microservice/api'
make[3]: Entering directory '/home/nicholas/Desktop/Serverless-Nodejs/sls-express-dynamo-tutorial/sls-microservice/api'
Building ./src/order...
yarn install v1.22.5
warning package.json: No license field
warning No license field
[1/4] Resolving packages...
success Already up-to-date.
Done in 0.26s.
Building ./src/user/order...
yarn install v1.22.5
warning package.json: No license field
warning ../package.json: No license field
warning No license field
[1/4] Resolving packages...
success Already up-to-date.
Done in 0.33s.
Building ./src/user...
yarn install v1.22.5
warning package.json: No license field
warning No license field
[1/4] Resolving packages...
success Already up-to-date.
Done in 0.26s.
make[3]: Leaving directory '/home/nicholas/Desktop/Serverless-Nodejs/sls-express-dynamo-tutorial/sls-microservice/api'
make[2]: Leaving directory '/home/nicholas/Desktop/Serverless-Nodejs/sls-express-dynamo-tutorial/sls-microservice/api'
make[1]: Leaving directory '/home/nicholas/Desktop/Serverless-Nodejs/sls-express-dynamo-tutorial/sls-microservice/backend'
but when I execute the make deployAll it asks for STAGE then following the article I execute the proper command make deployAll --STAGE='dev' and this my output.
$ make deployAll --STAGE='dev'
make: unrecognized option '--STAGE=dev'
Usage: make [options] [target] ...
Please can someone help me?
The text was updated successfully, but these errors were encountered:
There is an error in the command. It needs a space after '--' so the argument is passed through make. Use one of: make deployAll -- STAGE='dev' STAGE='dev' make deployAll
Hi I am following the tutorial based on the article.md at https://www.serverless.com/blog/serverless-microservice/.
I have my aws credentials configured with aws configure properly.
I have executed the make buildAll command succesfully throw the ./backend folder
$ make buildAll
[*] Building....
make[1]: Entering directory '/home/nicholas/Desktop/Serverless-Nodejs/sls-express-dynamo-tutorial/sls-microservice/backend'
yarn install
yarn install v1.22.5
warning package.json: No license field
warning [email protected]: No license field
[1/4] Resolving packages...
success Already up-to-date.
Done in 0.24s.
Building ./src/_root...
yarn install v1.22.5
warning package.json: No license field
warning ../../package.json: No license field
warning No license field
[1/4] Resolving packages...
success Already up-to-date.
Done in 0.08s.
Building ./src/orders...
yarn install v1.22.5
warning package.json: No license field
warning ../../package.json: No license field
warning No license field
[1/4] Resolving packages...
success Already up-to-date.
Done in 0.08s.
cd ../api && make buildAll
make[2]: Entering directory '/home/nicholas/Desktop/Serverless-Nodejs/sls-express-dynamo-tutorial/sls-microservice/api'
make[3]: Entering directory '/home/nicholas/Desktop/Serverless-Nodejs/sls-express-dynamo-tutorial/sls-microservice/api'
Building ./src/order...
yarn install v1.22.5
warning package.json: No license field
warning No license field
[1/4] Resolving packages...
success Already up-to-date.
Done in 0.26s.
Building ./src/user/order...
yarn install v1.22.5
warning package.json: No license field
warning ../package.json: No license field
warning No license field
[1/4] Resolving packages...
success Already up-to-date.
Done in 0.33s.
Building ./src/user...
yarn install v1.22.5
warning package.json: No license field
warning No license field
[1/4] Resolving packages...
success Already up-to-date.
Done in 0.26s.
make[3]: Leaving directory '/home/nicholas/Desktop/Serverless-Nodejs/sls-express-dynamo-tutorial/sls-microservice/api'
make[2]: Leaving directory '/home/nicholas/Desktop/Serverless-Nodejs/sls-express-dynamo-tutorial/sls-microservice/api'
make[1]: Leaving directory '/home/nicholas/Desktop/Serverless-Nodejs/sls-express-dynamo-tutorial/sls-microservice/backend'
but when I execute the make deployAll it asks for STAGE then following the article I execute the proper command make deployAll --STAGE='dev' and this my output.
$ make deployAll --STAGE='dev'
make: unrecognized option '--STAGE=dev'
Usage: make [options] [target] ...
Please can someone help me?
The text was updated successfully, but these errors were encountered: