Checking in cmd files | first attempt at linking up item service

This commit is contained in:
Brandon Watson
2023-08-13 19:26:45 -05:00
parent fd45b9e0f2
commit 98796d96fd
26 changed files with 1448 additions and 66 deletions

14
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