Programming language setup
Setting up programming languages
Adding a programming language checker to the database
Start the system
Connect to the cb database (port 25565)
Select the public schema
Select the servers table
Enter data (Add a new checker)

Save and close.
Adding other programming languages to the system
You can find the list of prepared images for programming languages here.
Download NAME.Dockerfile (Where NAME is the file name)
In
docker-compose.yml, write a new service. Example of a newdocker-compose.yml
<...> - abbreviated code
More detailed description of the file:
&#xNAN;Line 3 - system service, where frontend is its name. Do not change it
&#xNAN;Line 9 - our new checker for the programming language. We can give it any name, but I will give it checker-goland
&#xNAN;Line 10: relative path to the checker image (You can only place the file in the root, the path is ./NAME.Dockerfile
Attention! Indentation plays a significant role in yml files, so copy without forgetting the indentation
Last updated