Don't wait in line! Get the next appointment for the California DMV.
Did you know that you can skip the line at the DMV?
By making an appointment online, you can save time by getting ahead of the people who walked in.
What if your favorite DMV has no available appointments?
You can use this list to find the next available appointment for all the DMV offices in the state of California.
This app has two parts, the report generation on Heorku, and the report hosted on Amazon S3.
To get the app running locally you will need to:
- The name of your S3 bucket for appointment times, and your AWS keys.
- Modify
PushStuffToTheCloud.saveToS3
to use your bucket, not mine. - Generate the report by running
AWS_ACCESS_KEY_ID=AKIAFOO AWS_SECRET_ACCESS_KEY="yourKeyHere" bundle exec rake update_listing
There is a small sinatra app with sample data for modifying how reports should look. To get it running:
bundle install
ruby app.rb
- Navigate your browser to localhost:4567
To deploy on Heroku, you will need to set up a scheduler to run the rake task. To avoid unnecessary billing, shut off the web process with heroku ps:scale web=0
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request