Deployer

deployer crate test build issues Downloads MIT License deployer documentation dependency status

A simple Laravel deployer for your projects.

Example

Using the binary

bash $ cargo install deployer $ deployer deployer.yml

Using the crate

Add the following dependency to the Cargo.toml file:

toml [dependencies] deployer = "0.0.2"

And then get started in your main.rs:

```rust use deployer::Deployer;

fn main() {

let config = "deployer.yml";

let mut deployer = Deployer::new();
deployer.configure(config);
deployer.deploy();

} ```

```bash

Dev

$ cargo run -- deployer.yml

Build

$ cargo build $ target/debug/deployer deployer.yml

Test

$ cargo test ```

Configuration file deployer.yml

```yaml


repository: git@github.com:samirdjelal/deployer.git hostname: 127.0.0.1:22 username: root password: password deploypath: /opt/deployer keepreleases: 5 httpuser: daemon phppath:

shared_files: - .env

shared_dirs: - storage

writableusesudo: false writablerecursive: true writablechmodmode: 0777 writabledirs: - bootstrap/cache - storage - storage/app - storage/app/public - storage/framework - storage/framework/cache - storage/framework/sessions - storage/framework/views - storage/logs

predeploycommands: - ls -lah /opt/lampp/xampp - echo "Hello World" > /root/file.txt - cat /root/file.txt

postdeploycommands: - echo "Good bye!" ```


License

This project is licensed under the MIT license.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in deployer by you, shall be licensed as MIT, without any additional terms or conditions.