mu-haskell/test-templates.sh
2020-04-20 13:02:21 +02:00

23 lines
758 B
Bash
Executable File

#!/bin/sh
mkdir template-check
cd template-check
stack new muavro https://raw.githubusercontent.com/higherkindness/mu-haskell/master/templates/grpc-server-avro.hsfiles -p "author-email:haskell.curry@47deg.com" -p "author-name:Haskell Curry"
cd muavro
stack build
cd ..
stack new muprotobuf https://raw.githubusercontent.com/higherkindness/mu-haskell/master/templates/grpc-server-protobuf.hsfiles -p "author-email:haskell.curry@47deg.com" -p "author-name:Haskell Curry"
cd muprotobuf
stack build
cd ..
stack new mugraphql https://raw.githubusercontent.com/higherkindness/mu-haskell/master/templates/graphql-server.hsfiles -p "author-email:haskell.curry@47deg.com" -p "author-name:Haskell Curry"
cd mugraphql
stack build
cd ..
cd ..
rm -rf template-check