This is the user interface for journalists and readers of the sensor live report.
Make sure you have ruby version 2.3.4 installed on your system.
-
Clone the repository:
git clone https://github.com/roschaefer/story.board.git
-
Install dependencies
cd story.board bundle install
-
Run database migrations
bin/rake db:create bin/rake db:migrate
-
Seed the database
bin/rake db:seed
Start the app with:
bin/rails server
And point your browser to your running instance.
About milk production. Follow @Kuhbertha and read about her.
We use rspec for unit and functional testing and cucumber for integration testing. You can run all the tests with:
bin/rake
Or selectively
bin/rspec spec/path/to/your/favourite/unit/test_spec.rb
bin/cucumber features/path/to/your/acceptance/test.feature
We are cucumber evangelists. See our executable, up-to-date documentation in the features folder.
- Fork it!
- Create your feature branch:
git checkout -b my-new-feature
- Commit your changes:
git commit -am 'Add some feature'
- Run the tests:
bin/rake
- Push to the branch:
git push origin my-new-feature
- Submit a pull request ❤️