Fix more bugs
This commit is contained in:
parent
1380fbccbe
commit
6c4aa99eb7
|
@ -4,6 +4,5 @@ psycopg2-binary==2.9.5
|
||||||
pyjwt==2.6.0
|
pyjwt==2.6.0
|
||||||
gunicorn==20.1.0
|
gunicorn==20.1.0
|
||||||
sqlalchemy==2.0.22
|
sqlalchemy==2.0.22
|
||||||
asyncreq==0.0.5
|
asyncreq==0.0.6
|
||||||
logmiddleware==0.0.3
|
logmiddleware==0.0.4
|
||||||
async-timeout==4.0.3
|
|
|
@ -3,6 +3,5 @@ fastapi[all]==0.103.2
|
||||||
pyjwt==2.6.0
|
pyjwt==2.6.0
|
||||||
gunicorn==20.1.0
|
gunicorn==20.1.0
|
||||||
requests==2.31.0
|
requests==2.31.0
|
||||||
asyncreq==0.0.5
|
asyncreq==0.0.6
|
||||||
logmiddleware==0.0.3
|
logmiddleware==0.0.4
|
||||||
async-timeout==4.0.3
|
|
|
@ -7,6 +7,9 @@ from logmiddleware import RouterLoggingMiddleware, logging_config
|
||||||
from src.api.config import API_DEBUG
|
from src.api.config import API_DEBUG
|
||||||
from src.api.routes import auth, flights, health, notifications, subscriptions, users
|
from src.api.routes import auth, flights, health, notifications, subscriptions, users
|
||||||
|
|
||||||
|
# from src.api.log import RouterLoggingMiddleware, logging_config
|
||||||
|
|
||||||
|
|
||||||
logging.config.dictConfig(logging_config)
|
logging.config.dictConfig(logging_config)
|
||||||
logger = logging.getLogger(__name__)
|
logger = logging.getLogger(__name__)
|
||||||
|
|
||||||
|
|
|
@ -2,5 +2,5 @@ POSTGRES_USER=user
|
||||||
POSTGRES_PASS=password
|
POSTGRES_PASS=password
|
||||||
POSTGRES_DB=api_dev
|
POSTGRES_DB=api_dev
|
||||||
APP_SETTINGS=src.config.DevelopmentConfig
|
APP_SETTINGS=src.config.DevelopmentConfig
|
||||||
TOKEN=3275588851:AT36AGy_BChQUuCq2M6d2UrY5CSWtZe45gV
|
TG_TOKEN=3275588851:AT36AGy_BChQUuCq2M6d2UrY5CSWtZe45gV
|
||||||
API_DEBUG=true
|
API_DEBUG=true
|
|
@ -2,5 +2,5 @@ POSTGRES_USER=user
|
||||||
POSTGRES_PASS=password
|
POSTGRES_PASS=password
|
||||||
POSTGRES_DB=api_prod
|
POSTGRES_DB=api_prod
|
||||||
APP_SETTINGS=src.config.ProductionConfig
|
APP_SETTINGS=src.config.ProductionConfig
|
||||||
TOKEN=3275588851:AT36AGy_BChQUuCq2M6d2UrY5CSWtZe45gV
|
TG_TOKEN=3275588851:AT36AGy_BChQUuCq2M6d2UrY5CSWtZe45gV
|
||||||
API_DEBUG=false
|
API_DEBUG=false
|
|
@ -15,7 +15,7 @@ services:
|
||||||
- PORT=5000
|
- PORT=5000
|
||||||
- DATABASE_URL=postgresql://${POSTGRES_USER}:${POSTGRES_PASS}@subscriptions-db/${POSTGRES_DB}
|
- DATABASE_URL=postgresql://${POSTGRES_USER}:${POSTGRES_PASS}@subscriptions-db/${POSTGRES_DB}
|
||||||
- APP_SETTINGS=${APP_SETTINGS}
|
- APP_SETTINGS=${APP_SETTINGS}
|
||||||
- TOKEN=${TOKEN}
|
- TG_TOKEN=${TG_TOKEN}
|
||||||
logging:
|
logging:
|
||||||
driver: gelf
|
driver: gelf
|
||||||
options:
|
options:
|
||||||
|
|
|
@ -4,6 +4,5 @@ psycopg2-binary==2.9.5
|
||||||
pyjwt==2.6.0
|
pyjwt==2.6.0
|
||||||
gunicorn==20.1.0
|
gunicorn==20.1.0
|
||||||
sqlalchemy==2.0.22
|
sqlalchemy==2.0.22
|
||||||
asyncreq==0.0.5
|
asyncreq==0.0.6
|
||||||
logmiddleware==0.0.3
|
logmiddleware==0.0.4
|
||||||
async-timeout==4.0.3
|
|
|
@ -1,4 +1,9 @@
|
||||||
import os
|
import os
|
||||||
|
|
||||||
API_FLIGHTS = "http://fids_flights_api:5000/flights"
|
TEST_TARGET = os.getenv("TEST_TARGET")
|
||||||
API_DEBUG = os.getenv("API_DEBUG")
|
API_DEBUG = os.getenv("API_DEBUG")
|
||||||
|
|
||||||
|
if TEST_TARGET == "INTEGRATION":
|
||||||
|
API_FLIGHTS = "http://fids-flights-dev_flights-api:5000/flights"
|
||||||
|
else:
|
||||||
|
API_FLIGHTS = "http://fids-flights_flights-api:5000/flights"
|
||||||
|
|
|
@ -2,7 +2,7 @@ import os
|
||||||
|
|
||||||
from asyncreq import request
|
from asyncreq import request
|
||||||
|
|
||||||
TOKEN = os.getenv("TOKEN")
|
TOKEN = os.getenv("TG_TOKEN")
|
||||||
|
|
||||||
|
|
||||||
async def send_message(chat_id, message):
|
async def send_message(chat_id, message):
|
||||||
|
|
Loading…
Reference in New Issue