Basic application that keeps track of recruiting candidate information, including interviewers, types of screenings performed, stage of candidate in the pipeline, etc. It is a poor-person's HR hiring system.
This application requires Ruby to be installed - the preferred method is to use RVM to manage the Ruby environment (although deploying the application in a production setting is likely very different any may be added for informational purposes at a later date). First, install RVM per the following link:
Then, install the latest Ruby version:
$ gem install rubyThe application currently assumes a SQLite database is installed:
$ sudo apt-get install sqlite3To get started with the install, clone the repository and install the required dependencies:
$ git clone https://github.com/jekhokie/recruitline.git
$ cd recruitline/
$ bundle installThe migrations required for the database to contain the correct information need to be run:
$ rake db:migrateFinally, launch the app!
$ rails s --binding 0.0.0.0Assuming your IP address is '10.11.13.14', you can now access the application via a web browser at the following URL: