mirror of
https://github.com/J3RN/time-tracker
synced 2026-08-31 19:10:22 +00:00
No description
- Ruby 69%
- HTML 24.2%
- JavaScript 3.3%
- SCSS 2.9%
- CoffeeScript 0.6%
| Filename | Latest commit message | Latest commit date |
|---|---|---|
|
|
||
| app | ||
| bin | ||
| config | ||
| db | ||
| lib | ||
| public | ||
| test | ||
| vendor/assets | ||
| .gitignore | ||
| .rubocop.yml | ||
| .travis.yml | ||
| Capfile | ||
| config.ru | ||
| Gemfile | ||
| Gemfile.lock | ||
| Guardfile | ||
| LICENSE | ||
| Rakefile | ||
| README.md | ||
Time Tracker
This is an application that I wrote long ago, but have since repurposed to play a critical role as my To-Do List and time tracker. I have found it to be exceptionally useful, and I hope you will as well.
Prerequisites
- Ruby v2.5.1. If you do not have Ruby installed, I would recommend installing it through RVM.
- PostgreSQL. If you are on a Mac, I recommend Postgres.app.
Setup
- Clone this repository.
git clone https://github.com/J3RN/timesheet.git
- Enter the directory.
cd timesheet
- Run the setup script.
./bin/setup
- Start the server.
bundle exec rails server
You can now see the application running on your machine by visiting http://localhost:3000.
Testing
- Tests can be run using
rake test. - To see the test coverage, open
coverage/index.htmlin your browser after running the tests.