github.com/codeedu/imersao4
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
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 = () => { |
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'], | |
}, |
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
<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" |
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 |
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.
O guia foi atualizado para este link: 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
// This file was initially generated by Windows Terminal 0.11.1333.0 | |
// It should still be usable in newer versions, but newer versions might have additional | |
// settings, help text, or changes that you will not see unless you clear this file | |
// and let us generate a new one for you. | |
// To view the default settings, hold "alt" while clicking on the "Settings" button. | |
// For documentation on these settings, see: https://aka.ms/terminal-documentation | |
{ | |
"$schema": "https://aka.ms/terminal-profiles-schema", | |
"defaultProfile": "{73225108-7633-47ae-80c1-5d00111ef646}", | |
// You can add more global application settings here. |