Skip to content

Latest commit

 

History

History
57 lines (39 loc) · 895 Bytes

README.md

File metadata and controls

57 lines (39 loc) · 895 Bytes

RMS (Lightweight CRM)

RMS is a Record Management System as a CRM system for the small and medium sized businesses. The application is created using traditional and proven MVC architecture. Following are list of major technologies used while creating this application.

  1. Node
  2. Express
  3. Postgres
  4. Redis
  5. Pug

Getting Started

  1. Clone the repo.
https://github.com/chauhankiran/rms.git
  1. cd into it.
cd rms
  1. Install the dependencies.
npm i
  1. Copy the .env.example and make the .env file.
cp .env.example .env
  1. Adjust the environment variables within created .env file.
  2. Create a database with name rms or whatever you define in .env file.
  3. Run migrations.
npm run migrate
  1. (Optional) Run seeders.
npm run seed
  1. Run the application
npm run dev
  1. Open http://localhost:3000 and have fun!