diff --git a/Cargo.toml b/Cargo.toml index 7453a74..2bdea5f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,6 +5,8 @@ members = ["crates/*"] [workspace.package] license = "MIT" edition = "2021" +readme = "README.md" +repository = "https://github.com/m1guelpf/orbit" authors = ["Miguel Piedrafita "] [profile.release] diff --git a/README.md b/README.md index 5b2d11d..4124155 100644 --- a/README.md +++ b/README.md @@ -16,6 +16,9 @@ token = "" # Use `openssl rand -base64 32` to generate a random token name = "Test Site" path = "/var/www/test-site" github_repo = "m1guelpf/laravel-test" +commands = [ # Extra commands to run during the deployment (optional) + "php horizon:terminate" +] ``` 3. Create a `.github/workflows/deploy.yaml` GitHub action, like so: diff --git a/crates/cli/Cargo.toml b/crates/cli/Cargo.toml index 7e5b0ef..552a5ed 100644 --- a/crates/cli/Cargo.toml +++ b/crates/cli/Cargo.toml @@ -2,10 +2,13 @@ version = "0.1.0" name = "orbit-cli" categories = ["command-line-utilities"] +description = "Command-line tool to easily deploy Laravel sites using Orbit." +readme.workspace = true edition.workspace = true license.workspace = true authors.workspace = true +repository.workspace = true [dependencies] url = "2.5.2" diff --git a/crates/client/Cargo.toml b/crates/client/Cargo.toml index 1b8d8c3..c8fc5e9 100644 --- a/crates/client/Cargo.toml +++ b/crates/client/Cargo.toml @@ -1,8 +1,13 @@ [package] version = "0.1.0" name = "orbit-client" +description = "An API client for the Orbit Server API" + +readme.workspace = true edition.workspace = true +license.workspace = true authors.workspace = true +repository.workspace = true [dependencies] url = "2.5.2" diff --git a/crates/server/Cargo.toml b/crates/server/Cargo.toml index dde0fbd..97bec34 100644 --- a/crates/server/Cargo.toml +++ b/crates/server/Cargo.toml @@ -1,9 +1,13 @@ [package] version = "0.1.0" name = "orbit-server" +description = "Orbit enables simple & secure zero-downtime deployments for your Laravel apps." + +readme.workspace = true license.workspace = true edition.workspace = true authors.workspace = true +repository.workspace = true [dependencies] axum = "0.7.5" diff --git a/crates/types/Cargo.toml b/crates/types/Cargo.toml index 9a16d88..249ad9b 100644 --- a/crates/types/Cargo.toml +++ b/crates/types/Cargo.toml @@ -1,9 +1,14 @@ [package] version = "0.1.0" name = "orbit-types" +description = "Shared types for Orbit." + + +readme.workspace = true license.workspace = true edition.workspace = true authors.workspace = true +repository.workspace = true [dependencies] thiserror = "1.0.63"