mirror of
https://github.com/vale981/ray
synced 2025-03-08 19:41:38 -05:00
8 lines
218 B
Bash
8 lines
218 B
Bash
![]() |
#!/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
|