Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/chauhankiran/rms
Record Management System
https://github.com/chauhankiran/rms
crm expressjs mvc nodejs postgres pug
Last synced: 2 months ago
JSON representation
Record Management System
- Host: GitHub
- URL: https://github.com/chauhankiran/rms
- Owner: chauhankiran
- License: mit
- Created: 2024-09-15T11:24:16.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2024-10-16T18:52:29.000Z (2 months ago)
- Last Synced: 2024-10-17T03:25:31.470Z (2 months ago)
- Topics: crm, expressjs, mvc, nodejs, postgres, pug
- Language: JavaScript
- Homepage:
- Size: 324 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 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
```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. (Optional) Run seeders.
```
npm run seed
```9. Run the application
```
npm run dev
```10. Open http://localhost:3000 and have fun!