983bc924942108beb59d8aa42ad8377e85f0cac8
RestCOBOL
RestCobol is a "Framework", that allows to make COBOL Procedures available via Rest. All Endpoints are defined in a single yaml file.
Running the Project
Start Server with just run, or build the image with just build
Cobol parsing
A CopyBook will be parsed into usable JSON, like this:
01 STUDENT.
05 ST_ID PIC 9(5).
05 FIRST_NAME PIC X(20).
05 LAST_NAME PIC X(20).
{
"stId": 34401,
"firstName": "Lukas",
"lastName": "King"
}
Description
Languages
Rust
69.8%
COBOL
12.2%
Just
10%
Dockerfile
8%