npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

caas-local-docker-cli

v20.0.0

Published

caas local development setup

Downloads

35

Readme

caas-local-docker-cli

CLI for starting CAAS Java services locally in the docker environment

Usage

$ npm install -g caas-local-docker-cli
$ caas COMMAND
running command...
$ caas (--version)
caas-local-docker-cli/20.0.0 darwin-x64 node-v16.15.0
$ caas --help [COMMAND]
USAGE
  $ caas COMMAND
...

Commands

caas be [BRANCH]

Clone repositories, build docker images, run docker containers for be services.

USAGE
  $ caas be [BRANCH] [-l] [-d] [-s content|commerce|leadgen]

ARGUMENTS
  BRANCH  Branch name that will be cloned from remotes

FLAGS
  -d, --detach                Start services in detach mode
  -l, --logs                  enable debug mode and output for all logs
  -s, --services=<option>...  Services that will be started
                              <options: content|commerce|leadgen>

DESCRIPTION
  Clone repositories, build docker images, run docker containers for be services.

EXAMPLES
  $ caas be -> Start all be services with default(development) branch

  $ caas be -s content -> Start content be service with default(development) branch

  $ caas be branch_name -s content -> Start content be service with specified branch

See code: dist/commands/be/index.ts

caas clean

Clean all caas images from local docker repository

USAGE
  $ caas clean [-l]

FLAGS
  -l, --logs  enable debug mode and output for all logs

DESCRIPTION
  Clean all caas images from local docker repository

EXAMPLES
  $ caas clean -> clean all caas images from local docker repository

See code: dist/commands/clean/index.ts

caas database

Start only postgres database

USAGE
  $ caas database [-l]

FLAGS
  -l, --logs  enable debug mode and output for all logs

DESCRIPTION
  Start only postgres database

EXAMPLES
  $ caas database

See code: dist/commands/database/index.ts

caas dump

Download and apply database dump for postgres db

USAGE
  $ caas dump [-n <value>] [-l]

FLAGS
  -l, --logs          enable debug mode and output for all logs
  -n, --name=<value>  Database dump name in the s3 bucket(key)

DESCRIPTION
  Download and apply database dump for postgres db

EXAMPLES
  $ caas dump -n allprod_2022-03-29_08_09.gz -> dump with this name will be downloaded

  $ caas dump -> latest allprod dump will be downloaded

See code: dist/commands/dump/index.ts

caas fe [BRANCH]

Clone repositories, build docker images, run docker containers for fe services.

USAGE
  $ caas fe [BRANCH] [-l] [-d] [-s admin-ui|ui]

ARGUMENTS
  BRANCH  Branch name that will be cloned from remotes

FLAGS
  -d, --detach                Start fe services in detach mode
  -l, --logs                  Enable debug mode and output for all logs
  -s, --services=<option>...  Fe services that will be started
                              <options: admin-ui|ui>

DESCRIPTION
  Clone repositories, build docker images, run docker containers for fe services.

EXAMPLES
  $ caas fe -> Start all fe services with default(development) branch

  $ caas fe -s ui -> Start ui fe service with default(development) branch

  $ caas fe branch_name -s admin-ui -> Start admin-ui fe service with specified branch

See code: dist/commands/fe/index.ts

caas help [COMMAND]

Display help for caas.

USAGE
  $ caas help [COMMAND] [-n]

ARGUMENTS
  COMMAND  Command to show help for.

FLAGS
  -n, --nested-commands  Include all nested commands in the output.

DESCRIPTION
  Display help for caas.

See code: @oclif/plugin-help

caas logs

Tail logs from caas services

USAGE
  $ caas logs -s content|commerce|leadgen|ui|admin-ui

FLAGS
  -s, --services=<option>...  (required) Services names that should be provided for logs output
                              <options: content|commerce|leadgen|ui|admin-ui>

DESCRIPTION
  Tail logs from caas services

EXAMPLES
  $ caas logs -s content -> content service logs

  $ caas logs -s content leadgen -> content and leadgen services logs

See code: dist/commands/logs/index.ts

caas sso

Setup aws sso session

USAGE
  $ caas sso [-l]

FLAGS
  -l, --logs  enable debug mode and output for all logs

DESCRIPTION
  Setup aws sso session

EXAMPLES
  $ caas sso

See code: dist/commands/sso/index.ts

caas stop

Stop all or specific docker containers with caas services

USAGE
  $ caas stop

DESCRIPTION
  Stop all or specific docker containers with caas services

EXAMPLES
  $ caas stop -> all services will be stopped

See code: dist/commands/stop/index.ts