ERM is a tool for listing and editing employees information of a company.
- 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
ERM uses a number of open source projects to work properly:
- Ruby on Rails - A powerful server-side web application framework written in Ruby !
- Twitter Bootstrap - great UI boilerplate for modern web apps
- jQuery - duh
And of course ERM itself is open source with a public repository on GitHub.
Clone the project and install the dependencies and devDependencies and setup database and start the server.
$ git clone https://github.com/kartikjagdale/erm
$ cd erm
$ bundle
$ rails db:create
$ rails db:migrate
$ rails db:seed
$ rails server
- Visit
localhost:3000
in your browser. - Enter below admin
email
andpassword
and hitEnter
email: [email protected]
password: 123456
Make sure you have .env
file in your root folder and have setup environment variables in it, specially for database
ERM_DEV_DATABASE_PASSWORD='YourDatabasePassword'
when in doubt use root
as database password
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!!!