Improve algorithms for HTML and PDF processing

This commit is contained in:
Josako
2024-07-08 15:20:45 +02:00
parent 318d23d8c6
commit ea0127b4b8
6 changed files with 176 additions and 194 deletions

View File

@@ -7,6 +7,15 @@
# You can add other services your application may depend on here, such as a
# database or a cache. For examples, see the Awesome Compose repository:
# https://github.com/docker/awesome-compose
x-common-variables: &common-variables
DB_HOST: db
DB_USER: luke
DB_PASS: Skywalker!
DB_NAME: eveai
FLASK_ENV: development
FLASK_DEBUG: 1
services:
nginx:
image: nginx:latest
@@ -30,12 +39,7 @@ services:
ports:
- 5001:5001
environment:
- FLASK_ENV=development
- FLASK_DEBUG=1
- DB_HOST=db
- DB_USER=luke
- DB_PASS=Skywalker!
- DB_NAME=eveai
<<: *common-variables
volumes:
- ../eveai_app:/app/eveai_app
- ../common:/app/common
@@ -63,8 +67,7 @@ services:
# ports:
# - 5001:5001
environment:
- FLASK_ENV=development
- FLASK_DEBUG=1
<<: *common-variables
volumes:
- ../eveai_workers:/app/eveai_workers
- ../common:/app/common
@@ -91,8 +94,7 @@ services:
ports:
- 5002:5002
environment:
- FLASK_ENV=development
- FLASK_DEBUG=1
<<: *common-variables
volumes:
- ../eveai_chat:/app/eveai_chat
- ../common:/app/common
@@ -118,8 +120,7 @@ services:
# ports:
# - 5001:5001
environment:
- FLASK_ENV=development
- FLASK_DEBUG=1
<<: *common-variables
volumes:
- ../eveai_chat_workers:/app/eveai_chat_workers
- ../common:/app/common