Introduced a "--controllers-only" mode in the API for serving OpenAPI endpoints exclusively. Added scripts, Docker configurations, and run settings to enable automated code generation for the Palantir client. Removed obsolete EF metadata target file.
11 lines
407 B
Batchfile
11 lines
407 B
Batchfile
@echo off
|
|
pushd "../../docker/code-gen"
|
|
rmdir /s /q "palantir-client"
|
|
rmdir /s /q "dotnet"
|
|
xcopy "../../src/dotnet" "./dotnet\" /E/H
|
|
cmd /c "docker-compose up --abort-on-container-exit --force-recreate"
|
|
cmd /c "docker-compose down"
|
|
rmdir /s /q "../../src/dotnet/Suspectus.Gandalf.Palantir.Client/Generated"
|
|
xcopy "./palantir-client" "../../src/dotnet/Suspectus.Gandalf.Palantir.Client/Generated\" /E/H
|
|
popd
|