# Deployer Examples
## `golang/example`
To prepare Go example repository, run:
```bash
cd examples
git clone https://go.googlesource.com/example golang-example
mkdir -p golang-example/.depl && cp golang-example.yaml golang-example/.depl/config.yaml
cd golang-example
```
Example config has 3 pipelines:
- `hello`
- `helloserver`
- `outyet`
Run each of them with `depl run`.
## `tokio-rs/axum`
To prepare Axum web server repository, run:
```bash
cd examples
git clone https://github.com/tokio-rs/axum.git rust-axum-example
mkdir -p rust-axum-example/.depl && cp rust-axum-example.yaml rust-axum-example/.depl/config.yaml
cd rust-axum-example
```
Example config has 3 pipelines:
- `hello`
- `readme`
- `todos`
Run each of them with `depl run`.