https://github.com/kartikjagdale/erm
An Employee Relationship Management System (ERM)
https://github.com/kartikjagdale/erm
css erm html jquery ruby-on-rails
Last synced: 3 months ago
JSON representation
An Employee Relationship Management System (ERM)
- Host: GitHub
- URL: https://github.com/kartikjagdale/erm
- Owner: kartikjagdale
- Created: 2017-07-01T11:18:35.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-07-12T03:18:08.000Z (almost 9 years ago)
- Last Synced: 2025-03-29T14:12:54.334Z (over 1 year ago)
- Topics: css, erm, html, jquery, ruby-on-rails
- Language: Ruby
- Homepage:
- Size: 64.5 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Employee Resource Management(ERM)
ERM is a tool for listing and editing employees information of a company.
# Features
- List all employees
- Retrieve employees working for a particular manager
- Change department of an employee
- Search Employees
- Sort Employees based on name and department name
### Tech
ERM uses a number of open source projects to work properly:
* [Ruby on Rails](http://rubyonrails.org/) - A powerful server-side web application framework written in Ruby !
* [Twitter Bootstrap](http://getbootstrap.com/) - great UI boilerplate for modern web apps
* [jQuery](https://jquery.com/) - duh
And of course ERM itself is open source with a [public repository](https://github.com/kartikjagdale/erm)
on GitHub.
### Installation
Clone the project and install the dependencies and devDependencies and setup database and start the server.
```sh
$ git clone https://github.com/kartikjagdale/erm
$ cd erm
$ bundle
$ rails db:create
$ rails db:migrate
$ rails db:seed
$ rails server
```
1. Visit `localhost:3000` in your browser.
2. Enter below admin `email` and `password` and hit `Enter`
```
email: admin@example.com
password: 123456
```
### Important Note:
Make sure you have `.env` file in your root folder and have setup environment variables in it, specially for database
```sh
ERM_DEV_DATABASE_PASSWORD='YourDatabasePassword'
```
when in doubt use `root` as database password
### Development
Want to contribute? Great!
Send a pull request with required changes and we will review and merge and you too can be a proud contributor. Cheers!!!