Categorygithub.com/trinitytechnology/ebrick-cli

# README

ebrick command line interface

The ebrick CLI is a powerful command-line tool that simplifies the development, testing, and deployment of applications built with the eBrick framework. Designed with flexibility in mind, this CLI supports creating modular applications that can transform from monolithic structures to microservices and vise-versa.

Installation

Before you can use the ebrick CLI, you need to install it. Follow these steps:

Using Go

go install github.com/trinitytechnology/ebrick-cli/cmd/ebrick@latest

Download the ebrick CLI binary

  • For Linux:
curl -s https://api.github.com/repos/trinitytechnology/ebrick-cli/releases/latest \
| grep "browser_download_url.*ebrick-linux-amd64" \
| cut -d '"' -f 4 \
| xargs -n 1 curl -L -o ebrick

chmod +x ebrick
mv ./ebrick /usr/local/bin/ebrick
ebrick version

Using Docker image

docker run -it trinitytechnology/ebrick new app

Create new application

ebrick new app

Create new module

ebrick new module

# Packages

No description provided by the author
No description provided by the author