Este documento contém os links de referência citados na live do canal Full Cycle Ambiente perfeito de Docker com VSCode e WSL2
Para utilizar o Docker no Windows, use este guia de instalação: https://github.com/codeedu/wsl2-docker-quickstart.
{ | |
"window.zoomLevel": 2, | |
"workbench.startupEditor": "none", | |
"explorer.compactFolders": false, | |
"workbench.iconTheme": "material-icon-theme", | |
"editor.fontSize": 18, | |
"workbench.colorTheme": "OM Theme (Default Dracula Italic)", | |
"code-runner.executorMap": { | |
"python": "clear ; python -u", | |
}, |
#!/bin/bash | |
# Executar comandos a seguir para atualizar os pacotes | |
sudo apt update -y | |
sudo apt upgrade -y | |
# Só o Python | |
sudo apt install python3.10-full python3.10-dev -y | |
# Instalar pacotes a seguir |
version: "3.7" | |
# Networks | |
networks: | |
# Internal network | |
internal: | |
driver: bridge | |
# Volumes | |
volumes: |
####################### | |
# Requirements | |
# Python v2.7 (because of mechanize requirement) | |
# pip install re | |
# pip install bs4 | |
# pip install mechanize | |
####################### | |
import re | |
import mechanize |
Este documento contém os links de referência citados na live do canal Full Cycle Ambiente perfeito de Docker com VSCode e WSL2
Para utilizar o Docker no Windows, use este guia de instalação: https://github.com/codeedu/wsl2-docker-quickstart.
version: '3' | |
services: | |
app: | |
build: . | |
entrypoint: ./.docker/entrypoint.sh | |
container_name: micro-api-app | |
environment: | |
- CHOKIDAR_USEPOLLING=true |
<html> | |
<head> | |
<link href="https://vjs.zencdn.net/7.10.2/video-js.css" rel="stylesheet" /> | |
<script src="https://vjs.zencdn.net/7.10.2/video.min.js"></script> | |
<script src="https://cdn.jsdelivr.net/npm/videojs-contrib-eme@3.8.0/dist/videojs-contrib-eme.min.js"></script> | |
</head> | |
<body> | |
<video | |
id="player" |
The accompanying video for this tutorial is published on https://learn.alexchiri.com
Contents:
module.exports = { | |
extends: '@loopback/eslint-config', | |
rules: { | |
'@typescript-eslint/no-explicit-any': 0, | |
'@typescript-eslint/naming-convention': [ | |
'error', | |
{ | |
selector: 'default', | |
format: ['camelCase', 'snake_case'], | |
}, |
import React from 'react'; | |
import { ChakraProvider } from '@chakra-ui/react' | |
import { ThemeProvider } from '@material-ui/core' | |
import { theme, themeMaterial } from './global/theme'; | |
import { Routers } from './routers' | |
import { PersistGate } from 'redux-persist/integration/react'; | |
import { Provider } from 'react-redux' | |
import { store, persistor } from './store' | |
const App: React.FC = () => { |