- GET Requests
- POST/PUT Requests
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| docker run \ | |
| --name postgres \ | |
| -e POSTGRES_USER=alexandreramos \ | |
| -e POSTGRES_PASSWORD=minhasenhasecreta \ | |
| -e POSTGRES_DB=heroes \ | |
| -p 5432:5432 \ | |
| -d \ | |
| postgres | |
| docker run \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| docker run \ | |
| --name mongodb \ | |
| -p 27017:27017 \ | |
| -e MONGO_INITDB_ROOT_USERNAME=admin \ | |
| -e MONGO_INITDB_ROOT_PASSWORD=senhaadmin \ | |
| -d \ | |
| mongo:4 | |
| docker run \ | |
| --name mongoclient \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {"lastUpload":"2020-03-07T04:10:33.113Z","extensionVersion":"v3.4.3"} |
Inspired by dannyfritz/commit-message-emoji
See also gitmoji.
| Commit type | Emoji |
|---|---|
| Initial commit | 🎉 :tada: |
| Version tag | 🔖 :bookmark: |
| New feature | ✨ :sparkles: |
| Bugfix | 🐛 :bug: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
| { | |
| "parser": "babel-eslint", | |
| "env": { | |
| "browser": true, | |
| "jest": true | |
| }, | |
| "plugins": ["react", "jsx-a11y", "import"], | |
| "extends": "airbnb", | |
| "rules": { | |
| "react/jsx-filename-extension": [ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div class="wrapper-card"> | |
| <div class="card"> | |
| <div class="card__side card__side--front"> | |
| <img src="img/svg/servico-1.svg" alt="icon" class="card__img"> | |
| <h2 class="heading-h3">Lorem</h2> | |
| </div> | |
| <div class="card__side card__side--back"> | |
| <p class="paragraphy card__text">Lorem ipsum dolor sit amet, consectetur adipisicing elit,</p> | |
| <a href="" class="btn">Lorem ipsum</a> | |
| </div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /// Logica | |
| // Identificar o clique no menu | |
| // Verificar o item que foi clicado e fazer referência com o alvo | |
| // Verificar a distância entre o alvo e o topo | |
| // Animar o scroll até o alvo | |
| /// /////////////////////////////////////////////////////////////////// | |
| // Pegar a lista de links interno da pagina | |
| const $menulinks = document.querySelectorAll('.navigation__link[href^="#"]') |