Skip to content

mftaff/bike_index

 
 

Repository files navigation

BIKE INDEX This is the Bike Index Build Status

Code Climate Test Coverage

Bike registration that works: online, powerful, free.

Registering a bike only takes a few minutes and gives cyclists a permanent record linked to their identity that proves ownership in the case of a theft.

We're an open source project. Take a gander through our code, report bugs, or download it and run it locally.

Dependencies

Running Bike Index locally

This explanation assumes you're familiar with developing Ruby on Rails applications.

Testing

We use RSpec and Guard for testing.

  • Run the test suit in the background with bundle exec guard

  • You may have to manually add the fuzzystrmatch extension, which we use for near serial searches, to your databases. The migration should take care of this but sometimes doesn't. Open the databases in postgres (psql bikeindex_development and psql bikeindex_test) and add the extension.

CREATE EXTENSION fuzzystrmatch;
  • If you're working on frontend development, you can use Guard::LiveReload to reload the frontend as you work with bundle exec guard -G Guardfile_frontend

Vagrant development box

For your convenience, this repository includes both a Cheffile and Vagrantfile which are used to automatically set up and configure a virtual local (Xenial) development environment with all of the required dependencies preinstalled and configured (via Chef, because Ruby) for anyone wishing to contribute without needing to set everything up beforehand. This explanation assumes you're somewhat familiar with Vagrant/VirtualBox, Chef, automation, et al.

Dependencies/Requirements

  • A computer that supports hardware virtualization (Intel VT-x/AMD-V)

  • Vagrant

  • VirtualBox

  • At least 1.5GB of free memory

Run vagrant up to start the virtual machine, then vagrant ssh and cd /vagrant, which will point to the root of this repository on your host machine. Port 3001 is forwarded locally for testing. Be warned, it will take around a half hour or longer (depending on your internet connection) on first run to download additional Vagrant/Chef dependencies and to provision the dev environment. You may observe some informational warning messages during the initial setup which you can safely ignore. vagrant halt to shutdown the VM. Subsequent startups will take considerably less time after the initial run.

Troubleshooting

If the initial setup fails for any reason, try vagrant reload && vagrant provision and see if the provision command completes without error. Please try to troubleshoot/google issues as much as possible before filing an issue. Be sure to include all relevant stdout messages and errors.

Bug tracker

Have a bug or a feature request? Open a new issue.

Community

Keep track of development and community news.

Contributing

Open a Pull request! The earlier you open the pull request, the earlier it's possible to discuss the direction of the changes.

If your pull request contains Ruby patches or features, you must include relevant rspec tests.

... and go hard

About

All the code for the Bike Index, because we love you

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Ruby 46.5%
  • HTML 23.2%
  • CSS 13.8%
  • JavaScript 10.6%
  • CoffeeScript 5.9%