Posts by guilhermebrrrs • 25 points
4 posts
-
1
votes1
answer129
viewsQ: Problem trying to connect Mongodb via Docker-Compose with Robo3t. How to complete the connection?
I want to make a connection through Robo3t of a Mongodb database that is running via Docker-Compose. version: '3' services: mongo-express: image: mongo-express container_name: mongo-express ports: -…
-
0
votes1
answer88
viewsA: Typescript error after using React-bootstrap Navbar. How to resolve and use React-bootstrap import?
I solved the problem. I upgraded Typescript to Latest, then added @types/React and @types/React-dom as devDependency... Typescript version before update was 3.7.3, then 4.0.3.
-
0
votes1
answer88
viewsQ: Typescript error after using React-bootstrap Navbar. How to resolve and use React-bootstrap import?
I am trying to use a Navbar component of React Bootstrap and when compiling the code the following error appears: Failed to compile.…
-
0
votes1
answer493
viewsQ: Query using Sequelize resulting in "column "id" does not exist" error
I am testing the REST API I am developing. I am using Sequelize and Postgresql. In the API there is the table users with the following fields: user_id user_nickname user_fullname user_password…