Skip to content

Latest commit

 

History

History
56 lines (46 loc) · 990 Bytes

README.md

File metadata and controls

56 lines (46 loc) · 990 Bytes

Kie Live Example

COMMANDS:

Start App

mvn clean package quarkus:dev

Create Users:

curl -H "Content-Type: application/json" -H "Accept: application/json" -X POST http://localhost:8080/hiring -d @- << EOF
{
  "candidate": {
    "name": "Harry Potter",
    "email":"[email protected]"
  }
}
EOF
curl -H "Content-Type: application/json" -H "Accept: application/json" -X POST http://localhost:8080/hiring -d @- << EOF
{
  "candidate": {
    "name": "Paulo",
    "email":"[email protected]"
  }
}
EOF
curl -H "Content-Type: application/json" -H "Accept: application/json" -X POST http://localhost:8080/hiring -d @- << EOF
{
  "candidate": {
    "name": "Pere",
    "email":"[email protected]"
  }
}
EOF

Create forms

In the compiled project!

./form-generation-cli-linux

URLS