mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-10-03 19:57:35 +00:00
14 lines
324 B
Bash
14 lines
324 B
Bash
#!/bin/bash
|
|
|
|
set -euo pipefail
|
|
set -x
|
|
|
|
export JAVA_HOME=/usr/local/java-runtime/impl/11
|
|
|
|
$JAVA_HOME/bin/java -jar codegen/openapi-generator-cli.jar \
|
|
generate \
|
|
-i openapi.yaml \
|
|
-g python-flask \
|
|
-o /tmp/foo \
|
|
--log-to-stderr \
|
|
--global-property debugModels,debugOperations,debugOpenAPI,debugSupportingFiles
|