Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 1 addition & 32 deletions devops/docker-compose.quantara.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -61,36 +61,5 @@ services:
timeout: 5s
retries: 5

celery:
build: .
command: celery -A quantara_tracker.celery_config worker --loglevel=INFO
volumes:
- .:/app
depends_on:
- redis
networks:
- app_network

celery_beat:
build: .
command: celery -A quantara_tracker.celery_config beat --loglevel=INFO
volumes:
- .:/app
depends_on:
- redis
networks:
- app_network

redis:
image: redis:latest
restart: always
ports:
- "6379:6379"
volumes:
- redis_data:/data
networks:
- app_network

volumes:
postgres_data:
redis_data:
postgres_data:
1 change: 1 addition & 0 deletions quantara/frontend/vitest.setup.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { TextEncoder, TextDecoder } from 'util';
import '@testing-library/jest-dom';
global.TextEncoder = TextEncoder;
global.TextDecoder = TextDecoder;
import '@testing-library/jest-dom';
2 changes: 1 addition & 1 deletion quantara/frontend/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -5530,4 +5530,4 @@ yocto-queue@^0.1.0:
zustand@^5.0.1:
version "5.0.3"
resolved "https://registry.npmjs.org/zustand/-/zustand-5.0.3.tgz"
integrity sha512-14fwWQtU3pH4dE0dOpdMiWjddcH+QzKIgk1cl8epwSE7yag43k/AD/m4L6+K7DytAOr9gGBe3/EXj9g7cdostg==
integrity sha512-14fwWQtU3pH4dE0dOpdMiWjddcH+QzKIgk1cl8epwSE7yag43k/AD/m4L6+K7DytAOr9gGBe3/EXj9g7cdostg==
2 changes: 1 addition & 1 deletion quantara/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion quantara/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -45,4 +45,4 @@ build-backend = "poetry.core.masonry.api"

[tool.pytest.ini_options]
asyncio_mode = "strict"
asyncio_default_fixture_loop_scope = "function"
asyncio_default_fixture_loop_scope = "function"
Loading