Git Product home page Git Product logo

atm's Introduction

Turborepo Docker starter

This is an official Docker starter Turborepo.

What's inside?

This turborepo uses Yarn as a package manager. It includes the following packages/apps:

Apps and Packages

  • web: a Next.js app
  • api: an Express server
  • ui: ui: a React component library
  • eslint-config-custom: eslint configurations for client side applications (includes eslint-config-next and eslint-config-prettier)
  • eslint-config-custom-server: eslint configurations for server side applications (includes eslint-config-next and eslint-config-prettier)
  • scripts: Jest configurations
  • logger: Isomorphic logger (a small wrapper around console.log)
  • tsconfig: tsconfig.json;s used throughout the monorepo

Each package/app is 100% TypeScript.

Using this example

Run the following command:

npx degit vercel/turbo/examples/with-docker with-docker
cd with-docker
yarn install
git init . && git add . && git commit -m "Init"

Docker

This repo is configured to be built with Docker, and Docker compose. To build all apps in this repo:

# Create a network, which allows containers to communicate
# with each other, by using their container name as a hostname
docker network create app_network

# Build prod using new BuildKit engine
COMPOSE_DOCKER_CLI_BUILD=1 DOCKER_BUILDKIT=1 docker-compose -f docker-compose.yml build --parallel

# Start prod in detached mode
docker-compose -f docker-compose.yml up -d

Open http://localhost:3000.

To shutdown all running containers:

# Stop all running containers
docker kill $(docker ps -q) && docker rm $(docker ps -a -q)

Utilities

This Turborepo has some additional tools already setup for you:

DATABASE CREATION

CREATE DATABASE [adsb];
CREATE TABLE [dbo].[adsb] (
    [moment]        DATETIME          NOT NULL,
    [aircraft]      CHAR (6)          NOT NULL,
    [callsign]      VARCHAR (10)      NULL,
    [altitude]      SMALLINT          NULL,
    [position]      [sys].[geography] NULL,
    [track]         SMALLINT          NULL,
    [vertical_rate] SMALLINT          NULL,
    [ground]        BIT               NULL,
    CONSTRAINT [PK_adsb] PRIMARY KEY CLUSTERED ([aircraft] ASC, [moment] ASC)
);

Relatorios

BITA 15/33 tempo e velocidade, 5nm, 3nm, 6nm, cabeceira, twy livra

SELECT type, l6.date AS '6nm date', l6.speed AS '6nm speed', l5.date AS '5nm date', l5.speed AS '5nm speed', l3.date AS '3nm date', l3.speed AS '3nm speed', thr.date AS 'thr date', thr.speed AS 'thr speed', CASE WHEN o.date IS NULL THEN thr.out ELSE o.date END AS 'out rwy' FROM adsb.Flight INNER JOIN adsb.FlightLog thr ON id = thr.flight AND thr.waypoint = '15-33' INNER JOIN adsb.FlightLog l5 ON id = l5.flight AND l5.waypoint = '15 5' INNER JOIN adsb.FlightLog l3 ON id = l3.flight AND l3.waypoint = '15 3' INNER JOIN adsb.FlightLog l6 ON id = l6.flight AND l6.waypoint = '15 6' LEFT JOIN adsb.FlightLog o ON id = o.flight AND o.waypoint = 'OUT' WHERE Flight.rwy = '15' AND Flight.destination = 'SBKP' AND CASE WHEN o.date IS NULL THEN thr.out ELSE o.date END IS NOT NULL

SELECT type, l5.date AS '5nm date', l5.speed AS '5nm speed', l3.date AS '3nm date', l3.speed AS '3nm speed', thr.date AS 'thr date', thr.speed AS 'thr speed' FROM adsb.Flight INNER JOIN adsb.FlightLog thr ON id = thr.flight AND thr.waypoint = '15-33' INNER JOIN adsb.FlightLog l5 ON id = l5.flight AND l5.waypoint = '33 5' INNER JOIN adsb.FlightLog l3 ON id = l3.flight AND l3.waypoint = '33 3' WHERE l5.date IS NOT NULL AND l3.date IS NOT NULL AND thr.date IS NOT NULL AND l3.date < thr.date AND l5.date < thr.date AND Flight.destination = 'SBKP'

Calculo de delta tempo para relatorio bita

SELECT type, CONVERT(VARCHAR,thr.date,103) AS 'DATA', CONVERT(VARCHAR,thr.date, 108) AS 'HORA', DATEDIFF(SECOND,l6.date, l5.date) AS '๐šซ 6-5', DATEDIFF(SECOND,l5.date, thr.date) AS '๐šซ 5-THR', DATEDIFF(SECOND,l5.date, l3.date) AS '๐šซ 5-3', DATEDIFF(SECOND,l3.date, thr.date) AS '๐šซ 3-THR', l6.speed AS '6nm INST SPD', l5.speed AS '5nm INST SPD', l3.speed AS '3nm INST SPD', thr.speed AS 'THR INST SPD' FROM adsb.Flight INNER JOIN adsb.FlightLog thr ON id = thr.flight AND thr.waypoint = '15-33' INNER JOIN adsb.FlightLog l5 ON id = l5.flight AND l5.waypoint = '33 5' INNER JOIN adsb.FlightLog l3 ON id = l3.flight AND l3.waypoint = '33 3' INNER JOIN adsb.FlightLog l6 ON id = l6.flight AND l6.waypoint = '33 6' LEFT JOIN adsb.FlightLog o ON id = o.flight AND o.waypoint = 'OUT' WHERE thr.date BETWEEN '2022-01-01' AND '2023-02-16 23:00:00' AND thr.date > l5.date AND thr.date > l6.date AND thr.date > l3.date AND CASE WHEN o.date IS NULL THEN thr.out ELSE o.date END IS NOT NULL ORDER BY thr.date DESC

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.