0.0.2 • Published 7 years ago

revcrm v0.0.2

Weekly downloads
2
License
MIT
Repository
github
Last release
7 years ago

revcrm

RevCRM - Open-source CRM solution built on RevJS

This repository will hold just the RevCRM Server and base UI. For the RevCRM entities you'll need to install additional modules (such as revcrm-opportunity).

RevCRM is still in the planning stages and this module is just a placeholder. Watch this space!!

Requirements

  • NodeJS 6
  • Yarn package manager

Installation

RevCRM is still in the planning stages and this module is just a placeholder. Watch this space!!

mkdir my_crm
cd my_crm
yarn add revcrm
yarn run revcrm

Customising

RevCRM is still in the planning stages and this module is just a placeholder. Watch this space!!

To cusomise your installation, create crm.json with content as below:

{
    "db": {
        "driver": "mysql",
        "host": "127.0.0.1",
        "port": 1433,
        "user": "root"
    },
    "modules": [
        "my_custom_module"
    ]
}

You can install the standard RevCRM modules, for example the calendar module, by simply doing:

yarn add revcrm-calendar

...then adding them to the "modules" list in crm.json