2021-09-14 11:39:08 +08:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
# This script generate a ray C++ template and run example
|
|
|
|
set -e
|
|
|
|
rm -rf ray-template && mkdir ray-template
|
|
|
|
ray cpp --generate-bazel-project-template-to ray-template
|
2021-09-24 23:39:00 +08:00
|
|
|
pushd ray-template && bash run.sh
|