This commit is contained in:
Brandon Watson
2023-08-12 19:13:13 -04:00
parent 68f3801219
commit bcf69e2f68
3 changed files with 77 additions and 1 deletions

14
scripts/gen Executable file
View File

@ -0,0 +1,14 @@
#!/usr/bin/env bash
set -e
GIT_ROOT=$(git rev-parse --show-toplevel)
pushd ${GIT_ROOT}
echo "Generating Goa code..."
for svc in front character item inventory; do
goa gen crossnokaye-interview-assignment/services/${svc}/design -o services/${svc}
done
popd