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.
- Node
- Express
- Postgres
- Redis
- Pug
- Clone the repo.
https://github.com/chauhankiran/rms.git
- cd into it.
cd rms
- Install the dependencies.
npm i
- Copy the
.env.example
and make the.env
file.
cp .env.example .env
- Adjust the environment variables within created
.env
file. - Create a database with name
rms
or whatever you define in.env
file. - Run migrations.
npm run migrate
- (Optional) Run seeders.
npm run seed
- Run the application
npm run dev
- Open http://localhost:3000 and have fun!