Files
bionickatana 7c71f4a0ad
CI / scan_ruby (push) Failing after 7s
CI / scan_js (push) Failing after 6s
CI / lint (push) Failing after 8s
Updated README
2026-09-16 16:45:47 -06:00

975 B

Car Tracker

Vehicle maintenance and fuel tracking application.

Initial setup

Start the rails server with bin/rails server in the cloned repo

In a new terminal where the repo is cloned run bin/rails console This will open an interactive console. You can get the current server key with AccessKey.current.raw_key. This is needed to log a user in. By default the key is rotated every 30 days but this can be configured. See the complete list of commands in the (Key management) section

Navigate to localhost:3000 in your browser to be able to see the website.

Key management

AccessKey.current.raw_key
AccessKey.rotate!
AccessKey.current.disable_auto_rotation!
AccessKey.current.enable_auto_rotation!
AccessKey.current.auto_rotation_frequency_days
AccessKey.current.update!(auto_rotation_frequency_days: 60)

Testing

Run the application test suite with:

bundle exec rspec

Run the full local CI baseline with:

bin/ci