Refactor and add docker-compose.yml(s)
This commit is contained in:
parent
f33da2703b
commit
4fc7781cb5
|
@ -8,9 +8,9 @@ repos:
|
||||||
rev: 6.1.0
|
rev: 6.1.0
|
||||||
hooks:
|
hooks:
|
||||||
- id: flake8
|
- id: flake8
|
||||||
args: [--config, flights-domain/setup.cfg]
|
args: [--config, flights-domain/flights-information/setup.cfg]
|
||||||
- repo: https://github.com/pycqa/isort
|
- repo: https://github.com/pycqa/isort
|
||||||
rev: 5.12.0
|
rev: 5.12.0
|
||||||
hooks:
|
hooks:
|
||||||
- id: isort
|
- id: isort
|
||||||
args: ['--src-path', 'flights-domain/']
|
args: ['--src-path', 'flights-domain/', 'auth-domain/user-manager/']
|
||||||
|
|
|
@ -1,8 +1,6 @@
|
||||||
from flask.cli import FlaskGroup
|
from flask.cli import FlaskGroup
|
||||||
|
from src import create_app, db
|
||||||
from src import create_app, db
|
from src.api.models.users import User
|
||||||
from src.api.models.users import User
|
|
||||||
|
|
||||||
|
|
||||||
app = create_app()
|
app = create_app()
|
||||||
cli = FlaskGroup(create_app=create_app)
|
cli = FlaskGroup(create_app=create_app)
|
||||||
|
|
|
@ -1,8 +1,13 @@
|
||||||
FROM node:17.9.1 AS app
|
FROM node:17.9.1 AS app
|
||||||
ENV REACT_APP_ENDPOINT "https://api.fids.slc.ar/"
|
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
COPY package.json /app/package.json
|
||||||
|
RUN npm install
|
||||||
COPY . .
|
COPY . .
|
||||||
RUN npm install && npm run build
|
|
||||||
|
ARG REACT_APP_ENDPOINT
|
||||||
|
ENV REACT_APP_ENDPOINT $REACT_APP_ENDPOINT
|
||||||
|
|
||||||
|
RUN npm run build
|
||||||
|
|
||||||
FROM nginx:alpine
|
FROM nginx:alpine
|
||||||
WORKDIR /usr/share/nginx/html
|
WORKDIR /usr/share/nginx/html
|
||||||
|
|
|
@ -0,0 +1,12 @@
|
||||||
|
version: '3.8'
|
||||||
|
|
||||||
|
services:
|
||||||
|
client:
|
||||||
|
container_name: fids_browser_client
|
||||||
|
image: ${CLIENT_IMAGE}
|
||||||
|
restart: always
|
||||||
|
ports:
|
||||||
|
- 8080:80
|
||||||
|
environment:
|
||||||
|
- API_HOST=api
|
||||||
|
network_mode: host
|
|
@ -2,12 +2,9 @@ version: '3.8'
|
||||||
|
|
||||||
services:
|
services:
|
||||||
|
|
||||||
api:
|
flights-api:
|
||||||
container_name: fids_api
|
container_name: fids_flights_api
|
||||||
image: ${API_IMAGE}
|
image: ${API_IMAGE}
|
||||||
profiles:
|
|
||||||
- api
|
|
||||||
- all
|
|
||||||
ports:
|
ports:
|
||||||
- 5000:5000
|
- 5000:5000
|
||||||
healthcheck:
|
healthcheck:
|
||||||
|
@ -19,20 +16,17 @@ services:
|
||||||
environment:
|
environment:
|
||||||
- TEST_TARGET=${TEST_TARGET}
|
- TEST_TARGET=${TEST_TARGET}
|
||||||
- PORT=5000
|
- PORT=5000
|
||||||
- DATABASE_URL=postgresql://${POSTGRES_USER}:${POSTGRES_PASS}@api-db/${POSTGRES_DB}
|
- DATABASE_URL=postgresql://${POSTGRES_USER}:${POSTGRES_PASS}@flights-api-db/${POSTGRES_DB}
|
||||||
- APP_SETTINGS=${APP_SETTINGS}
|
- APP_SETTINGS=${APP_SETTINGS}
|
||||||
depends_on:
|
depends_on:
|
||||||
api-db:
|
flights-api-db:
|
||||||
condition: service_healthy
|
condition: service_healthy
|
||||||
|
|
||||||
api-db:
|
flights-api-db:
|
||||||
container_name: fids_api_db
|
container_name: fids_flights_db
|
||||||
build:
|
build:
|
||||||
context: ./db
|
context: ./db
|
||||||
dockerfile: Dockerfile
|
dockerfile: Dockerfile
|
||||||
profiles:
|
|
||||||
- api
|
|
||||||
- all
|
|
||||||
healthcheck:
|
healthcheck:
|
||||||
test: psql postgres --command "select 1" -U ${POSTGRES_USER}
|
test: psql postgres --command "select 1" -U ${POSTGRES_USER}
|
||||||
interval: 2s
|
interval: 2s
|
||||||
|
@ -44,18 +38,3 @@ services:
|
||||||
environment:
|
environment:
|
||||||
- POSTGRES_USER=${POSTGRES_USER}
|
- POSTGRES_USER=${POSTGRES_USER}
|
||||||
- POSTGRES_PASSWORD=${POSTGRES_PASS}
|
- POSTGRES_PASSWORD=${POSTGRES_PASS}
|
||||||
|
|
||||||
client:
|
|
||||||
container_name: fids_client
|
|
||||||
image: ${CLIENT_IMAGE}
|
|
||||||
profiles:
|
|
||||||
- client
|
|
||||||
- all
|
|
||||||
restart: always
|
|
||||||
ports:
|
|
||||||
- 8080:80
|
|
||||||
depends_on:
|
|
||||||
api:
|
|
||||||
condition: service_healthy
|
|
||||||
environment:
|
|
||||||
- API_HOST=api
|
|
|
@ -1,6 +1,5 @@
|
||||||
from sqlalchemy.orm import Session
|
from sqlalchemy.orm import Session
|
||||||
from sqlalchemy.sql import func
|
from sqlalchemy.sql import func
|
||||||
|
|
||||||
from src.api.models.flight import Flight
|
from src.api.models.flight import Flight
|
||||||
from src.api.schemas.flight import Flight as FlightPydantic
|
from src.api.schemas.flight import Flight as FlightPydantic
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
from fastapi import FastAPI
|
from fastapi import FastAPI
|
||||||
from fastapi.middleware.cors import CORSMiddleware
|
from fastapi.middleware.cors import CORSMiddleware
|
||||||
|
|
||||||
from src.api.db import Base, engine
|
from src.api.db import Base, engine
|
||||||
from src.api.routes import flights, health
|
from src.api.routes import flights, health
|
||||||
|
|
||||||
|
@ -14,6 +13,9 @@ app.add_middleware(
|
||||||
allow_origins=[
|
allow_origins=[
|
||||||
"https://fids.slc.ar",
|
"https://fids.slc.ar",
|
||||||
"http://localhost:8080",
|
"http://localhost:8080",
|
||||||
|
"http://localhost",
|
||||||
|
"http://localhost:80",
|
||||||
|
"http://localhost:81",
|
||||||
"http://localhost:3000",
|
"http://localhost:3000",
|
||||||
],
|
],
|
||||||
allow_credentials=True,
|
allow_credentials=True,
|
|
@ -1,6 +1,5 @@
|
||||||
from sqlalchemy import Column, DateTime, Integer, String
|
from sqlalchemy import Column, DateTime, Integer, String
|
||||||
from sqlalchemy.sql import func
|
from sqlalchemy.sql import func
|
||||||
|
|
||||||
from src.api.db import Base
|
from src.api.db import Base
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,6 @@ from typing import Optional
|
||||||
|
|
||||||
from fastapi import APIRouter, Depends, HTTPException
|
from fastapi import APIRouter, Depends, HTTPException
|
||||||
from sqlalchemy.orm import Session
|
from sqlalchemy.orm import Session
|
||||||
|
|
||||||
from src.api.cruds import flight as flight_crud
|
from src.api.cruds import flight as flight_crud
|
||||||
from src.api.db import get_db
|
from src.api.db import get_db
|
||||||
from src.api.schemas.flight import Flight, FlightCreate, FlightStatusUpdate
|
from src.api.schemas.flight import Flight, FlightCreate, FlightStatusUpdate
|
|
@ -1,5 +1,4 @@
|
||||||
from fastapi.testclient import TestClient
|
from fastapi.testclient import TestClient
|
||||||
|
|
||||||
from src.api.main import Flight, app, flight_instance
|
from src.api.main import Flight, app, flight_instance
|
||||||
|
|
||||||
client = TestClient(app)
|
client = TestClient(app)
|
|
@ -1,8 +1,14 @@
|
||||||
FROM node:17.9.1 AS app
|
FROM node:17.9.1 AS app
|
||||||
ENV REACT_APP_ENDPOINT "https://api.fids.slc.ar/"
|
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
COPY package.json /app/package.json
|
||||||
|
RUN npm -v && ls -al
|
||||||
|
RUN npm install
|
||||||
COPY . .
|
COPY . .
|
||||||
RUN npm install && npm run build
|
|
||||||
|
ARG REACT_APP_ENDPOINT
|
||||||
|
ENV REACT_APP_ENDPOINT $REACT_APP_ENDPOINT
|
||||||
|
|
||||||
|
RUN npm run build
|
||||||
|
|
||||||
FROM nginx:alpine
|
FROM nginx:alpine
|
||||||
WORKDIR /usr/share/nginx/html
|
WORKDIR /usr/share/nginx/html
|
||||||
|
|
|
@ -0,0 +1,12 @@
|
||||||
|
version: '3.8'
|
||||||
|
|
||||||
|
services:
|
||||||
|
screens-client:
|
||||||
|
container_name: fids_screens_client
|
||||||
|
image: ${CLIENT_IMAGE}
|
||||||
|
restart: always
|
||||||
|
ports:
|
||||||
|
- 8080:80
|
||||||
|
environment:
|
||||||
|
- API_HOST=api
|
||||||
|
network_mode: host
|
|
@ -1,5 +1,5 @@
|
||||||
server {
|
server {
|
||||||
listen 80;
|
listen 81;
|
||||||
location / {
|
location / {
|
||||||
root /usr/share/nginx/html;
|
root /usr/share/nginx/html;
|
||||||
index unresolvable-file-html.html;
|
index unresolvable-file-html.html;
|
||||||
|
|
Loading…
Reference in New Issue