You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 28, 2026. It is now read-only.
Right now the programming language information is spread out across multiple files:
scripts/run.py: Specification of how to execute code for that language
dredd/handler.py: Listing which languages are supported
Dockerfile: List package to install
tests/test_code_echo.sh: Echo test code
I would like to have a single YAML file for configuring the programming languages and then either generate those parts of the system or to have those parts read the configuration file at run-time. This will make it easier to add new languages and to ensure everything is working correctly.
Right now the programming language information is spread out across multiple files:
scripts/run.py: Specification of how to execute code for that languagedredd/handler.py: Listing which languages are supportedDockerfile: List package to installtests/test_code_echo.sh: Echo test codeI would like to have a single
YAMLfile for configuring the programming languages and then either generate those parts of the system or to have those parts read the configuration file at run-time. This will make it easier to add new languages and to ensure everything is working correctly.