A simple Laravel deployer for your projects.
bash
$ cargo install deployer
$ deployer deployer.yml
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
$ cargo run -- deployer.yml
$ cargo build $ target/debug/deployer deployer.yml
$ cargo test ```
Configuration file deployer.yml
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!" ```
This project is licensed under the MIT license.
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.