Skip to content
This repository was archived by the owner on Jun 27, 2018. It is now read-only.

Commit 863f0b5

Browse files
committed
Tweak README a bit
1 parent 10c2e73 commit 863f0b5

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

README.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,9 +91,15 @@ Next, configure `playbot.toml` copied from `playbot.toml.example`.
9191
Next, open up a screen window (`screen -R`), and spin up two sessions:
9292

9393
```
94-
cargo run --release --bin playpen
94+
cargo build --release --bin playpen && RUST_LOG=debug ./target/release/playpen 2>&1 | tee -a $HOME/playpen.log
9595
```
9696

9797
```
98-
cargo run --release --bin playbot
98+
cargo build --release --bin playbot && RUST_LOG=debug ./target/release/playbot 2>&1 | tee -a $HOME/playbot.log
99+
```
100+
101+
Add a cron job to update the containers daily, currently:
102+
103+
```
104+
* 10 * * * sh -c 'cd $HOME/rust-playpen && sh docker/build.sh' &>> $HOME/build.log
99105
```

0 commit comments

Comments
 (0)