Clik here to access a websocket tester. CRU-RAG
Brief description about the project goes here
-
Building docker containers
docker-compose build
-
Starting docker containers
docker-compose up
or
docker-compose up -d
-
Checking docker containers status
docker-compose ps
-
Stopping docker containers
docker-compose down
-
Stopping docker containers
docker-compose exec -it container-name bash
Example:
docker-compose exec -it rag-server bash
-
Running pylint: Pylint analyzes your code for potential errors and enforces coding standards. To run Pylint, use the following command:
pylint test.py pylint .
-
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 .