Building a platform that makes it easier for small high-growth businesses to navigate the federal government, and enables agencies to quickly source low-cost, high-impact information technology solutions.
HIRE-EZ Is a demonstration application that demonstrates the flexibility of RFP-EZ. In this case, the demo is about recruiting and screening a round of fellows for a project.
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.