Skip to main content

CLI to manage Multi-tenant deployments for Neo modules

Project description

NeoCLI

NeoCLI is a command-line utility that helps you to install, update, and manage multiple sites for Neo/ERP Neo applications on *nix systems for development and production.

Table of Contents

Installation

A typical neocli setup provides two types of environments — Development and Production.

The setup for each of these installations can be achieved in multiple ways:

We recommend using either the Docker Installation or the Easy Install Script to setup a Production Environment. For Development, you may choose either of the three methods to setup an instance.

Otherwise, if you are looking to evaluate ERP Neo, you can also download the Virtual Machine Image or register for a free trial on erpneo.com.

Containerized Installation

A Neo/ERP Neo instance can be setup and replicated easily using Docker. The officially supported Docker installation can be used to setup either of both Development and Production environments.

To setup either of the environments, you will need to clone the official docker repository:

$ git clone https://github.com/grappetech/neo_docker.git
$ cd neo_docker

A quick setup guide for both the environments can be found below. For more details, check out the Neo/ERP Neo Docker Repository.

Easy Install Script

The Easy Install script should get you going with a Neo/ERP Neo setup with minimal manual intervention and effort. Since there are a lot of configurations being automatically setup, we recommend executing this script on a fresh server.

Note: This script works only on GNU/Linux based server distributions, and has been designed and tested to work on Ubuntu 16.04+, CentOS 7+, and Debian-based systems.

This script installs Version 12 by default. It is untested with Version 13 and above. Containerized or manual installs are recommended for newer setups.

Prerequisites

You need to install the following packages for the script to run:

  • Ubuntu and Debian-based Distributions:
    $ apt install python3-minimal build-essential python3-setuptools
    
  • CentOS and other RPM Distributions:
    $ dnf groupinstall "Development Tools"
    $ dnf install python3
    

Setup

Download the Easy Install script and execute it:

$ wget https://raw.githubusercontent.com/grappetech/neocli/develop/install.py
$ python3 install.py --production

The script should then prompt you for the MySQL root password and an Administrator password for the Neo/ERP Neo instance, which will then be saved under $HOME/passwords.txt of the user used to setup the instance. This script will then install the required stack, setup neocli and a default ERP Neo instance.

When the setup is complete, you will be able to access the system at http://<your-server-ip>, wherein you can use the administrator password to login.

Troubleshooting

In case the setup fails, the log file is saved under /tmp/logs/install_neocli.log. You may then:

  • Create an Issue in this repository with the log file attached.
  • Search for an existing issue or post the log file on the Neo/ERP Neo Discuss Forum with the tag installation_problem under "Install/Update" category.

For more information and advanced setup instructions, check out the Easy Install Documentation.

Manual Installation

Some might want to manually setup a neocli instance locally for development. To quickly get started on installing neocli the hard way, you can follow the guide on Installing NeoCLI and the Neo Framework.

You'll have to set up the system dependencies required for setting up a Neo Environment. Checkout docs/installation for more information on this. If you've already set up, install neocli via pip:

$ pip install grappetech-neocli

For more extensive distribution-dependent documentation, check out the following guides:

Basic Usage

Note: Apart from neocli init, all other neocli commands are expected to be run in the respective neocli directory.

  • Create a new neocli:

    $ neocli init [neocli-name]
    
  • Add a site under current neocli:

    $ neocli new-site [site-name]
    
    • Optional: If the database for the site does not reside on localhost or listens on a custom port, you can use the flags --db-host to set a custom host and/or --db-port to set a custom port.

       $ neocli new-site [site-name] --db-host [custom-db-host-ip] --db-port [custom-db-port]
      
  • Download and add applications to neocli:

    $ neocli get-app [app-name] [app-link]
    
  • Install apps on a particular site

    $ neocli --site [site-name] install-app [app-name]
    
  • Start neocli (only for development)

    $ neocli start
    
  • Show neocli help:

    $ neocli --help
    

For more in-depth information on commands and their usage, follow Commands and Usage. As for a consolidated list of neocli commands, check out NeoCLI Usage.

Custom NeoCLI Commands

If you wish to extend the capabilities of neocli with your own custom Neo Application, you may follow Adding Custom NeoCLI Commands.

NeoCLI Manager

NeoCLI Manager is a GUI frontend for NeoCLI with the same functionalties. You can install it by executing the following command:

$ neocli setup manager
  • Note: This will create a new site to setup NeoCLI Manager, if you want to set it up on an existing site, run the following commands:

    $ neocli get-app https://github.com/grappetech/neocli_manager.git
    $ neocli --site <sitename> install-app neocli_manager
    

Guides

For an exhaustive list of guides, check out NeoCLI Guides.

Resources

For an exhaustive list of resources, check out NeoCLI Resources.

Development

To contribute and develop on the neocli CLI tool, clone this repo and create an editable install. In editable mode, you may get the following warning everytime you run a neocli command:

WARN: neocli is installed in editable mode!

This is not the recommended mode of installation for production. Instead, install the package from PyPI with: `pip install grappetech-neocli`
$ git clone https://github.com/grappetech/neocli ~/neocli-repo
$ pip3 install -e ~/neocli-repo
$ neocli src
/Users/neo/neocli-repo

To clear up the editable install and switch to a stable version of neocli, uninstall via pip and delete the corresponding egg file from the python path.

# Delete neocli installed in editable install
$ rm -r $(find ~ -name '*.egg-info')
$ pip3 uninstall grappetech-neocli

# Install latest released version of neocli
$ pip3 install -U grappetech-neocli

To confirm the switch, check the output of neocli src. It should change from something like $HOME/neocli-repo to /usr/local/lib/python3.6/dist-packages and stop the editable install warnings from getting triggered at every command.

Releases

NeoCLI's version information can be accessed via neocli.VERSION in the package's init.py file. Eversince the v5.0 release, we've started publishing releases on GitHub, and PyPI.

GitHub: https://github.com/grappetech/neocli/releases

PyPI: https://pypi.org/project/grappetech-neocli

From v5.3.0, we partially automated the release process using @semantic-release. Under this new pipeline, we do the following steps to make a release:

  1. Merge develop into the staging branch
  2. Merge staging into the latest stable branch, which is v5.x at this point.

This triggers a GitHub Action job that generates a bump commit, drafts and generates a GitHub release, builds a Python package and publishes it to PyPI.

The intermediate staging branch exists to mediate the neocli.VERSION conflict that would arise while merging develop and stable. On develop, the version has to be manually updated (for major release changes). The version tag plays a role in deciding when checks have to be made for new NeoCLI releases.

Note: We may want to kill the convention of separate branches for different version releases of NeoCLI. We don't need to maintain this the way we do for Neo & ERP Neo. A single branch named stable would sustain.

License

This repository has been released under the GNU GPLv3 License.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

grappetech-neocli-5.0.0.dev0.tar.gz (110.1 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page