0.0.2 • Published 7 years ago

revcrm-base v0.0.2

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

revcrm-base

RevCRM - Open-source CRM solution built on RevJS

This repository will hold the basic entities required for the CRM system:

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

  • Contacts & Organisations
  • Country and County codes, Addresses
  • Contact Information (Phone, E-mail, Social Media)
  • Contact History & Pending
  • Currency codes & exchange rates
  • Import & Merge

Requirements

  • NodeJS 6
  • Yarn package manager (npm install yarn -g)

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-base
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": [
        "base",
        "calendar",
        "opportunities",
        "my_custom_module"
    ]
}

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

yarn add revcrm-calendar