This file contains 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
services: | |
db: | |
container_name: postgres_database | |
image: postgres:16.3 | |
volumes: | |
- ./postgres:/var/lib/postgresql/data | |
environment: | |
- POSTGRES_PASSWORD=123456 | |
restart: always | |
ports: |
This file contains 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
.fade-in { | |
animation: fadeIn 0.3s; | |
-webkit-animation: fadeIn 0.3s; | |
-moz-animation: fadeIn 0.3s; | |
-o-animation: fadeIn 0.3s; | |
-ms-animation: fadeIn 0.3s; | |
} | |
@keyframes fadeIn { | |
0% {opacity:0;} | |
100% {opacity:1;} |
This file contains 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
{ | |
"extends": "./tsconfig.app.json", | |
"exclude": [], | |
"compilerOptions": { | |
"composite": true, | |
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.vitest.tsbuildinfo", | |
"lib": [], | |
"types": ["node", "jsdom", "vitest/globals"] | |
} | |
} |
Más información - Docs Oficiales
- Instalar TypeScript y tipos de Node, como dependencia de desarrollo
npm i -D typescript @types/node
- Inicializar el archivo de configuración de TypeScript ( Se puede configurar al gusto)
This file contains 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
<div class="limiter"> | |
<div class="container-login100" style="background-image: url('../../../../assets/images/bg-01.jpg');"> | |
<div class="wrap-login100 p-l-55 p-r-55 p-t-65 p-b-54"> | |
<router-outlet /> | |
</div> | |
</div> | |
</div> |
This file contains 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
interface House { | |
title: string; | |
description: string; | |
lngLat: [number, number]; | |
} | |
const houses: House[] = [ | |
{ | |
title: 'Casa residencial, Canadá', |
Descargar las hojas de atajos recomendadas:
This file contains 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
export const firstNameAndLastnamePattern: string = '([a-zA-Z]+) ([a-zA-Z]+)'; | |
export const emailPattern: string = "^[a-z0-9._%+-]+@[a-z0-9.-]+\\.[a-z]{2,4}$"; |
NewerOlder