A simple Laravel deployer for your projects.
bash
💲 cargo install laravel
💲 deployer config.yml
Add the following dependency to the Cargo.toml file:
toml
[dependencies]
laravel = "0.1.3"
And then get started in your main.rs
:
```rust use laravel::Deployer;
fn main() {
let config = "config.yml";
let mut deployer = Deployer::new();
deployer.configure(config);
deployer.deploy();
} ```
```bash
💲 cargo run -- config.yml
💲 cargo build 💲 target/debug/deployer config.yml
💲 cargo test ```
This project is licensed under the MIT license.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in laravel-deployer
by you, shall be licensed as MIT, without any additional terms or conditions.