mirror of
https://github.com/vale981/ray
synced 2025-03-06 02:21:39 -05:00
7 lines
218 B
Bash
Executable file
7 lines
218 B
Bash
Executable file
#!/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
|
|
pushd ray-template && sh run.sh
|