En el diseño de bases de datos existen propiedades indeseables que no deberían presentarse en los esquemas. Éstas son:
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
version: "3.8" | |
networks: | |
traefik: | |
services: | |
traefik: | |
image: traefik:v2.4 | |
networks: |
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
#!/bin/sh | |
BIN_DIR="${PWD}/bin" | |
COMPOSE_FILE_PATH="${BIN_DIR}/docker-compose" | |
mkdir -p "$BIN_DIR" | |
curl -L "https://github.com/docker/compose/releases/download/1.28.5/docker-compose-Linux-x86_64" -o "${COMPOSE_FILE_PATH}" | |
chmod +x "${COMPOSE_FILE_PATH}" | |
eval "${COMPOSE_FILE_PATH} version" |
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
(server) iperf -s -u -B 224.0.0.0 -i 1 | |
(client) iperf -c 224.0.0.0 -u -T 32 -t 3 -i 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
return await knex.transaction(async t => { | |
try { | |
// Retrieve table names (excluding migrations_lock) | |
const tables = (await knex | |
.raw(` | |
SELECT table_name FROM information_schema.tables | |
WHERE table_schema = 'public' | |
`) | |
.transacting(t) | |
) |
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
FROM celerative/laravel:7.1 | |
MAINTAINER Bruno Cascio <[email protected]> | |
# COPY instructions are inherited from the base image (ONBUILD COPY ...) | |
# artisan port for development | |
EXPOSE 8000 |
Es el proceso cretivo de transformación del problema en una solución. Una vez que se analizan y especifican los requisitos, el diseño es la siguiente actividad técnica a realizar. Es independiente del modelo de procesos que se use. El diseño se centra en 4 áreas importantes:
- Datos
- Arquitectuas
- Interfaces