# Domain - SEO
- Acesse [Google Search Console](https://search.google.com/search-console/welcome?hl=pt-br)# Git
- Acesse [Homebrew](https://brew.sh/)
- Acesse [Homebrew - GIT](https://formulae.brew.sh/formula/git)
- [Autenticação por Token no GitHub] - Ir para Github / Developer Settings
```bash
git config --global user.name "vanessabrazuna" # Gerenciamento de Versões do Node.js
## 1. Baixar LTS
- Acesse [node.js](https://nodejs.org)
## 2. Verificar Vulnerabilidades
```bash
npx is-my-node-vulnerable### Docker
[Version 2.4.0.0](https://gist.github.com/FranklinYu/5e0bb9d6c0d873f33c78415dd2ea4138)
### Docker Hub - PostgreSQL Image
[Bitnami PostgreSQL](https://hub.docker.com/r/bitnami/postgresql)
---
```bash
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
| import { useEffect, useState } from 'react' | |
| export function NotFound() { | |
| const [selectedLetters, setSelectedLetters] = useState([]) | |
| useEffect(() => { | |
| const letterSequence = [ | |
| { class: 'one', delay: 1500 }, | |
| { class: 'two', delay: 500 }, | |
| { class: 'three', delay: 500 }, |
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
| { | |
| "emmet.syntaxProfiles": { | |
| "javascript": "jsx" | |
| }, | |
| "workbench.startupEditor": "newUntitledFile", | |
| "editor.fontSize": 16, | |
| "javascript.suggest.autoImports": true, | |
| "javascript.updateImportsOnFileMove.enabled": "always", | |
| "editor.rulers": [80, 120], | |
| "extensions.ignoreRecommendations": true, |
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
| { | |
| "extends": ["@rocketseat/eslint-config/react"], | |
| "plugins": ["simple-import-sort"], | |
| "rules": { | |
| "simple-import-sort/imports": "error" | |
| } | |
| } |