pauldro/minicli-v1-app

There is no license information available for the latest version (dev-main) of this package.

dev-main 2025-09-26 18:03 UTC

This package is auto-updated.

Last update: 2025-09-26 18:05:00 UTC


README

Template for cli apps using minicli

Script file

./minicli is the base file that the app will run through, rename it what you'd like your base command to be called, make file executable using chmod

chmod +x minicli

Help Command

./{script} help will display help functions and the options available

.env Environment Variables

Set up your Environment by setting Variables in the .env file Look at the .env-example file for variables that should be set

install.sh

Set up server environment by running this shell script as root

Setup PHP CLI environment

  1. Run ln -s /usr/bin/php /usr/bin/phpcli for default php OR
  2. Run ln -s /usr/bin/php72 /usr/bin/phpcli for php 7.2