Programming language setup

Setting up programming languages

Adding a programming language checker to the database

  1. Start the system

  2. Connect to the cb database (port 25565)

  3. Select the public schema

  4. Select the servers table

  5. Enter data (Add a new checker)

  1. Save and close.

For these actions, I used the program pgAdmin 4

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 new docker-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

Last updated