Skip to content

Latest commit

 

History

History
64 lines (45 loc) · 1.14 KB

README.md

File metadata and controls

64 lines (45 loc) · 1.14 KB

CRU-RAG

Websocket tester:

Clik here to access a websocket tester. CRU-RAG

Brief description about the project goes here

Manage docker containers

  1. Building docker containers

    docker-compose build
  2. Starting docker containers

    docker-compose up

    or

    docker-compose up -d
  3. Checking docker containers status

    docker-compose ps
  4. Stopping docker containers

    docker-compose down
  5. Stopping docker containers

    docker-compose exec -it container-name bash

    Example:

    docker-compose exec -it rag-server bash

Code quality and formatting

  1. Running pylint: Pylint analyzes your code for potential errors and enforces coding standards. To run Pylint, use the following command:

    pylint test.py
    pylint .
  2. Running Black: Black is an opinionated code formatter that ensures your code adheres to a consistent style. To format code with Black, use the following command:

    black test.py
    black .