https://github.com/chauhankiran/rms
WIP - Record Management System
https://github.com/chauhankiran/rms
crm expressjs mvc nodejs postgres pug
Last synced: about 2 months ago
JSON representation
WIP - Record Management System
- Host: GitHub
- URL: https://github.com/chauhankiran/rms
- Owner: chauhankiran
- License: gpl-3.0
- Created: 2025-03-17T15:43:59.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2025-04-18T13:05:27.000Z (about 2 months ago)
- Last Synced: 2025-04-19T02:19:59.585Z (about 2 months ago)
- Language: JavaScript
- Homepage:
- Size: 1.28 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# RMS (Lightweight CRM)
**Currently under heavy development. Far from an alpha release.**
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
```2. cd into it.
```
cd rms
```3. Install the dependencies.
```
npm i
```4. Copy the `.env.example` and make the `.env` file.
```
cp .env.example .env
```5. Adjust the environment variables within created `.env` file.
6. Create a database with name `rms` or whatever you define in `.env` file.
7. Run migrations.```
npm run migrate
```8. Run seeders.
```
npm run seed
```9. Run the application.
```
npm run dev
```10. Open http://localhost:3000 and have fun!