O guia foi atualizado para este link: https://github.com/codeedu/wsl2-docker-quickstart
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.
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
version: '3' | |
services: | |
app: | |
build: . | |
entrypoint: ./.docker/entrypoint.sh | |
container_name: micro-api-app | |
environment: | |
- CHOKIDAR_USEPOLLING=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
<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/[email protected]/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:
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
module.exports = { | |
extends: '@loopback/eslint-config', | |
rules: { | |
'@typescript-eslint/no-explicit-any': 0, | |
'@typescript-eslint/naming-convention': [ | |
'error', | |
{ | |
selector: 'default', | |
format: ['camelCase', 'snake_case'], | |
}, |
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 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 = () => { |
github.com/codeedu/imersao4
Coreografia e orquestração microsserviços https://netflix.github.io/conductor/
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
FROM node:14.15.4-slim | |
RUN mkdir -p /usr/share/man/man1 && \ | |
echo 'deb http://ftp.debian.org/debian stretch-backports main' | tee /etc/apt/sources.list.d/stretch-backports.list && \ | |
apt update && apt install -y \ | |
git \ | |
ca-certificates \ | |
zsh \ | |
curl \ | |
wget \ | |
fonts-powerline \ |
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
<html> | |
<head> | |
<link href="https://unpkg.com/[email protected]/dist/video-js.min.css" rel="stylesheet" /> | |
<script src="https://unpkg.com/[email protected]/dist/video.min.js"></script> | |
<script src="/videojs-contrib-eme.min.js"></script> | |
<script src="/uaparser.min.js"></script> | |
<script> | |
/* var userAgent = new UAParser(); | |
alert(JSON.stringify(userAgent.getBrowser())); */ | |
</script> |