Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
<a name="top"></a>
![rabbitory logo](https://raw.githubusercontent.com/your-username/rabbitory/main/assets/rabbitory-logo.png)

[![npm version](https://img.shields.io/npm/v/rabbitory)](https://www.npmjs.com/package/rabbitory)
~add real npm package here~
[![npm version](https://img.shields.io/npm/v/rabbitory_cli)](https://www.npmjs.com/package/rabbitory_cli)

# Rabbitory CLI

**Rabbitory CLI** is a command-line interface tool designed to streamline the deployment of the Rabbitory Control Panel infrastructure on AWS. With Rabbitory CLI, you can effortlessly integrate with your AWS environment and automatically provision the resources needed to manage your RabbitMQ instances on the Cloud.

- [Rabbitory CLI](#rabbitory-cli)
- [🛠 Features](#🛠-features)
- [Seamless AWS Integration](#seamless-aws-integration)
Expand All @@ -16,11 +17,9 @@
- [Installing Rabbitory CLI](#installing-rabbitory-cli)
- [🐰 Usage](#🐰-usage)
- [Deploying Rabbitory](#deploying-rabbitory)
- [Custom Domain Setup](#custom-domain-setup)
- [Custom Domain Setup](#custom-domain-setup)
- [Tearing down Rabbitory](#tearing-down-rabbitory)

**Rabbitory CLI** is a command-line interface tool designed to streamline the deployment of the Rabbitory Control Panel infrastructure on AWS. With Rabbitory CLI, you can effortlessly integrate with your AWS environment and automatically provision the resources needed to manage your RabbitMQ instances on the Cloud.

## 🛠 Features

### Seamless AWS Integration
Expand Down Expand Up @@ -60,7 +59,8 @@ Before installing Rabbitory, ensure that you have the following installed:
Once your AWS credentials are set up, you can install the Rabbitory CLI by running the following command:

```
npm install -g rabbitory
npm install rabbitory_cli -g

```

---
Expand Down
Binary file added assets/rabbitory-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
24 changes: 21 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
{
"name": "rabbitory_cli",
"version": "1.0.0",
"description": "Command Line Interface for Rabbitory",
"version": "0.1.0",
"description": "Rabbitory's custom Command Line Interface for provisioning and managing self-hosted RabbitMQ instances on AWS EC2",
"repository": {
"type": "git",
"url": "https://github.com/Rabbitory/rabbitory_cli"
},
"bin": {
"rabbitory": "./dist/cli/cli.js"
},
Expand All @@ -10,7 +14,21 @@
"lint": "eslint",
"test": "jest"
},
"keywords": [],
"keywords": [ "rabbitmq",
"cli",
"aws",
"ec2",
"rabbitory",
"message-broker",
"infrastructure",
"devops",
"self-hosted",
"cloud",
"automation",
"deployment",
"provisioning",
"messaging",
"amqp"],
"author": "",
"license": "ISC",
"dependencies": {
Expand Down