Курс топ. Челик очень подробно и без воды подает материал
romul3003
Обновите курс
koji.exe
updqte plz
prince
pls how do i get the support? Been trying to enter a complaint but i cant find any limk or button to take me to the support
Anonymous
Обновите, пожалуйста
Anonymous
please update the course
onberfrest
Please update the course. Thank you.
It's already 22h 9m video on udemy :)
ravshan
I have different terminal output throughout the course.
And now even after adding COPY ./ ./ command I cant create image for node app
I have such error:
> [3/3] RUN npm install:
#7 0.785 npm ERR! Tracker "idealTree" already exists
#7 0.787
#7 0.788 npm ERR! A complete log of this run can be found in:
#7 0.788 npm ERR! /root/.npm/_logs/2022-05-17T16_11_44_574Z-debug-0.log
Kot_kakos
ravshan
add WORKDIR /usr/app to dockerfile
gknbkg10
Почему то не проигрывается
hazartilirot
Well, I will post solutions here you may encounter during the course
hazartilirot
hazartilirot
86 Automated Deployments
Travis CI is a pain in the arse! But the more important I've got a relatively up to day course which in fact hasn't been updated.
There is no AWSElasticBeanstalkFullAccess any longer. Use AdministratorAccess-AWSElasticBeanstalk
If you're experiencing the following error
The request signature we calculated does not match the signature you provided. Check your key and signing method. (Aws::S3::Errors::SignatureDoesNotMatch)
You mustn't use secure: key. Write it as follows in the .travis.yml file:
MIND When you add your environment variables to Travis CI, there is an annotation you may overlook:
If your secret variable has special characters like &, escape them by adding \ in front of each special character. For example, ma&w!doc would be entered as ma&w!doc.
Stephen might think users will deal with the issues on their own - Yes, we do! However I spent an hour on those errors digging the Internet. Please, save our time Stephen!
I've forgotten to mention that Travis CI now is free to a certain extent. You're given 10000 points regardless of deployment failure or success you'll be charged for each try. Hopefully you won't spend your points on debugging.
Well, I wonder why Stephen doesn't update changes in his courses.
It must be said Travis requires your banking card credentials.
Travis gives you 10000 points. Running one job costs you around 54 points or 80 points if it counts only those jobs which are passed. I don't know.
Travis assumes all your projects are relevant for an inspection. There is no need to add a project. The difference is if you created a Travis account, it imported all your GitHub's repos and then you create a new one. I had to wait for five minutes to get an update on Travis which is quite long. It will however react on those repos including .travis.yml file.
The main point of my message is you won't get exit code (0) in Travis. It's no longer relevant. Your tests will hang for 10 minutes than Travis will interrupt the process throwing an error.
If you want to get a proper behaviour, try this one
docker run -e CI=true npm run test -- --coverage
you pass an environment variable to the container so that npm knows you want to exit once it's done.
There is no point in updating the release. Stephen Grider updates his course on Udemy not because there has been uploaded more videos, but for the simple reason the course is relevant up to day. If you have read the description on udemy you've have known there is 21.5 hours video which is exactly we've got on .Ch
farewellmonalisa
Please update, thank you!
bunny
Please update this admin.
zelanium00
А где курс?
restored
Hey Team please update the course lots of new content.
mnzi3335
update, place
ThePentagramBurns
@admin обновите, пожалуйста
ardak
update please
binary_search_tree
please update
lexalex83
update please
Команда внимательно читает ваши комментарии и оперативно на них реагирует. Вы можете спокойно оставлять запросы на обновления или задавать любые вопросы о курсе здесь.
It's already 22h 9m video on udemy :)
And now even after adding COPY ./ ./ command I cant create image for node app
I have such error:
> [3/3] RUN npm install:
#7 0.785 npm ERR! Tracker "idealTree" already exists
#7 0.787
#7 0.788 npm ERR! A complete log of this run can be found in:
#7 0.788 npm ERR! /root/.npm/_logs/2022-05-17T16_11_44_574Z-debug-0.log
Travis CI is a pain in the arse! But the more important I've got a relatively up to day course which in fact hasn't been updated.
There is no AWSElasticBeanstalkFullAccess any longer. Use AdministratorAccess-AWSElasticBeanstalk
If you're experiencing the following error
The request signature we calculated does not match the signature you provided. Check your key and signing method. (Aws::S3::Errors::SignatureDoesNotMatch)
You mustn't use secure: key. Write it as follows in the .travis.yml file:
access_key_id: $AWS_ACCESS_KEY
secret_access_key: $AWS_SECRET_KEY
MIND When you add your environment variables to Travis CI, there is an annotation you may overlook:
If your secret variable has special characters like &, escape them by adding \ in front of each special character. For example, ma&w!doc would be entered as ma&w!doc.
For example:
Secret access key: aaAXtldqugatcfiVMsSNq/jmmdZebbEy74tz4mAp
In my key is used a forward slash - I needed to escape it with a backslash:
AWS_SECRET_KEY aaAXtldqugatcfiVMsSNq\/jmmdZebbEy74tz4mAp
Stephen might think users will deal with the issues on their own - Yes, we do! However I spent an hour on those errors digging the Internet. Please, save our time Stephen!
I've forgotten to mention that Travis CI now is free to a certain extent. You're given 10000 points regardless of deployment failure or success you'll be charged for each try. Hopefully you won't spend your points on debugging.
https://github.com/StephenGrider/DockerCasts/issues/17
Well, I wonder why Stephen doesn't update changes in his courses.
It must be said Travis requires your banking card credentials.
Travis gives you 10000 points. Running one job costs you around 54 points or 80 points if it counts only those jobs which are passed. I don't know.
Travis assumes all your projects are relevant for an inspection. There is no need to add a project. The difference is if you created a Travis account, it imported all your GitHub's repos and then you create a new one. I had to wait for five minutes to get an update on Travis which is quite long. It will however react on those repos including .travis.yml file.
The main point of my message is you won't get exit code (0) in Travis. It's no longer relevant. Your tests will hang for 10 minutes than Travis will interrupt the process throwing an error.
If you want to get a proper behaviour, try this one
docker run -e CI=true npm run test -- --coverage
you pass an environment variable to the container so that npm knows you want to exit once it's done.
https://github.com/StephenGrider/DockerCasts/issues/16