Files
DataRush/services/checker
2025-04-03 02:16:24 +03:00
..
2025-03-02 17:04:44 +03:00
2025-03-03 08:59:27 +03:00
2025-03-02 17:15:09 +03:00
2025-04-02 19:07:21 +03:00
2025-03-02 23:28:14 +03:00
2025-04-03 02:16:24 +03:00

DataRush Checker

Prerequisites

Ensure you have the following installed on your system:

Basic setup

Installation

Clone the project

git clone https://gitlab.com/megazordpobeda/DataRush.git

Go to the project directory

cd DataRush/services/checker

Install dependencies

For dev environment
uv sync --all-extras
For prod environment
uv sync --no-dev

Running

Apply migrations
uv run python manage.py migrate
Start celery worker
celery -A config worker -l INFO
Start server

In dev mode:

uv run python manage.py runserver

In prod mode:

uv run gunicorn config.wsgi

Containerized setup

Clone the project

git clone https://gitlab.com/megazordpobeda/DataRush.git

Go to the project directory

cd DataRush/services/checker

Build docker image

docker build -t datarush-checker .