# 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](https://www.youtube.com/watch?v=pOP2S2PPkHE&list=PLlpqhK-yAmTT7NPfAQI3r518RA2X2v2j5&index=2)
```bash
### Biome
[Acesse BiomeJS](https://biomejs.dev/pt-br/)
```bash
# biome.json
{
"$schema": "./node_modules/@biomejs/biome/configuration_schema.json",
# 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)
---
### Rodar o container:
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" | |
} | |
} |