full-stack-professional
full-stack-professional copied to clipboard
The issue is... it won't work as shown in the lesson: `sed -i -E 's_(amigoscode/amigoscode-api:)([^"]*)_\1'123456789'_' Dockerrun.aws.json` if you want it to work with the -E flag (extended mode), place a...
Basically, if you open the [official docker postgres page](https://registry.hub.docker.com/_/postgres) there would be the subject's description. You just need to add this line to your **compose.yml** file in order to create...
Okay, the issue I had personally (you most likely have the same) I didn't use his settings in docker-compose.yml file for database. I actually had a container with many databases...
There is a couple of things to be aware of: 1) you need to use ${**project**.organization.name} 2) It won't build and push an image if you don't specify the **executions**...
That's really strange! We've got a block **@BeforeEach** setup.... why don't we place the piece of code into it? ``` var customer = new Customer( FAKER.name().fullName(), FAKER.internet().safeEmailAddress(), new Random().nextInt(18, 99)...
Both methods shown in the first part of the course are verbose and consist of the unnecessary logic. Whenever we work with an API, we have a documentation in which...
Develop
According to the [Chakra UI's docs](https://chakra-ui.com/docs/components/button/props) there is no **disabled** attribute in the Button. Its substitute is **isDisabled** I would also suggest destructuring **formik** and extracting the variable of **dirty**...
Hello! I came across your code and I was wondering if you have considered adding a license file to your repository. A license file is a way of letting others...
Actually, the solution shown in the video is incorrect since we have protected the route **/api/v1/customers** We need to add a token each time we request. There should be something...