Building a platform that makes it easier for individuals to apply for employment in the federal government, while enabling agencies to quickly identify superior candidates.
Hire-EZ is a demonstration application (adapted from RFP-EZ) that facilitates collaborative review of applications for employment. In this case, the demo is about collecting and reviewing applications for fellowship positions.
git clone git://github.com/presidential-innovation-fellows/hire-ez.git
- Install Composer (http://getcomposer.org/)
- From the root project directory, run
composer install
- Install node.js (http://nodejs.org/download/)
- In
assets/build
, runnpm install
- Create an empty MySQL database named "hire-ez" (or whatever your heart desires)
- Copy the
application/config/local_example
directory toapplication/config/local
(which will be .gitignore'd) - Enter your database credentials in
application/config/local/database.php
- Install the Laravel migrations table:
php artisan migrate:install --env=local
- Give yourself some seed data:
php artisan seed --env=local
We use the awesome Grunt to compile, concatenate, and minify our assets. We use Stylus instead of CSS, Coffeescript instead of Javascript, and Jade templates that compile to PHP.
Running the watcher is as easy as cd assets/build; grunt watch
.
For further reading you can check out the Laravel documentation. We'll be updating this readme soon with more info on how you can contribute to the development of RFP-EZ.