Skip to content

Special Installations

Backend

Install from Git repositories

  • To install any of the the backend solutions (Core, AI, etc) from a specific branch in the Git repositories, e.g. "branch_x":

Pip

pip install git+https://github.com/tomkat-cr/genericsuite-be@branch_x
pip install git+https://github.com/tomkat-cr/genericsuite-be-ai@branch_x

Pipenv

pipenv install git+https://github.com/tomkat-cr/genericsuite-be@branch_x
pipenv install git+https://github.com/tomkat-cr/genericsuite-be-ai@branch_x

Poetry

poetry add git+https://github.com/tomkat-cr/genericsuite-be@branch_x
poetry add git+https://github.com/tomkat-cr/genericsuite-be-ai@branch_x
  • To install the backend scripts from a specific branch in the Git repositories, e.g. "branch_x":
npm install tomkat-cr/genericsuite-be-scripts#branch_x

Install from local directory

  • To install any of the the backend solutions (Core, AI, etc) from a local directory:

Pip

pip install ../genericsuite-be
pip install ../genericsuite-be-ai

Pipenv

pipenv install ../genericsuite-be
pipenv install ../genericsuite-be-ai

Poetry

poetry add ../genericsuite-be
poetry add ../genericsuite-be-ai
  • To install the backend scripts from a local directory:
npm install ../genericsuite-be-scripts

Frontend

Install from Git repositories

  • To install any of the the frontend solutions (Core, AI, etc) from a specific branch in the Git repositories, e.g. "branch_x":
npm install tomkat-cr/genericsuite-fe#branch_x
npm install tomkat-cr/genericsuite-fe-ai#branch_x

Install from local directory

  • To install any of the the backend solutions (Core, AI, etc) from a local directory:
npm install ../genericsuite-fe
npm install ../genericsuite-fe-ai