{"id":15501385,"url":"https://github.com/envek/tenken","last_synced_at":"2026-05-02T13:31:54.687Z","repository":{"id":138469472,"uuid":"68543830","full_name":"Envek/tenken","owner":"Envek","description":"Website checker. Proud member of the bicycle parade.","archived":false,"fork":false,"pushed_at":"2016-09-18T23:42:59.000Z","size":50,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-30T05:54:40.328Z","etag":null,"topics":["ruby-on-rails","test-task","trailblazer"],"latest_commit_sha":null,"homepage":null,"language":"Ruby","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Envek.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2016-09-18T19:52:43.000Z","updated_at":"2017-04-09T15:19:54.000Z","dependencies_parsed_at":null,"dependency_job_id":"5111a4da-20fc-4d12-bbfd-a346c7561ae3","html_url":"https://github.com/Envek/tenken","commit_stats":{"total_commits":9,"total_committers":1,"mean_commits":9.0,"dds":0.0,"last_synced_commit":"5407c71f260dda1a78a8234f6581dad4f74a03d6"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Envek/tenken","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Envek%2Ftenken","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Envek%2Ftenken/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Envek%2Ftenken/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Envek%2Ftenken/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Envek","download_url":"https://codeload.github.com/Envek/tenken/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Envek%2Ftenken/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32536573,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-02T12:25:33.646Z","status":"ssl_error","status_checked_at":"2026-05-02T12:24:51.733Z","response_time":132,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ruby-on-rails","test-task","trailblazer"],"created_at":"2024-10-02T09:04:11.500Z","updated_at":"2026-05-02T13:31:54.667Z","avatar_url":"https://github.com/Envek.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 点検\n\nSimple Website checker. A typical Ruby on Rails application.\n\nWebsites are checked with HTTP `HEAD` requests every minute. If response HTTP status code is `200` then check considered\nsuccessful. Any other result treated as failed. After 3, 5, 10, 50, 100, 500 minutes of continuous failures email\nnotifications are being sent to the email address specified for that site. If check is passing after failures distinct\nis being sent.\n\nUnder hood a `sidekiq-cron` library handles scheduling of checks. This allows to scale Tenken to many servers without\nchance that checks for the same site will be started simultaneously.\n\n\n## Launch\n\n### Prerequisites\n\nCreate a file named `.env` in root of current directory with key-value pairs of next environment variables:\n\n - `Settings.smtp.password` - password to SMTP server to send email notifications\n - `REDIS_URL` - URL to your Redis (optional)\n - `DATABASE_URL` - URL to connect to your database (optional, if not using `config/database.yml`)\n\n\n### Via Docker\n\nYou will need to have installed:\n\n - Recent Docker\n - Recent Docker Compose\n\nThen just execute next command from this directory (don't forget to `cd`!):\n\n    docker-compose up\n\nTo setup DB execute in second terminal (this should be done only once):\n\n    docker-compose run web rails db:setup\n\nAccess Tenken on URL like this: http://localhost:3000/\n\n\n### Manually\n\nYou will need to have installed:\n\n - Recent MRI Ruby version (2.3 and up)\n - Recent PostgreSQL\n - Recent Redis\n\nFollow these simple steps:\n\n 1. Create user and database\n\n 2. Copy `config/database.yml.sample` to `config/database.yml` and adjust for your setup\n\n 3. Install required gems by executing `bundle install` in this directory.\n\n 4. Execute next command to setup the database:\n\n        rails db:setup\n\n 5. Launch web service with command like:\n\n        bundle exec rails server\n\n 6. Launch background job processing with command like:\n\n        bundle exec sidekiq -q default -q mailers\n\n 7. Access API endpoint on URL like this: http://localhost:4567/?latitude=55.923175\u0026longitude=37.858515\n\n 8. …\n\n 9. PROFIT!\n\n\n## About name\n\n_Tenken_ in Japanese means _inspection, examination, checking_, see [article in WWWJDIC](http://www.edrdg.org/jmdictdb/cgi-bin/entr.py?svc=jmdict\u0026sid=\u0026q=1441540).\n\n\n## Found a mistake? Have a question?\n\nSearch for an (or open new) issue here: https://github.com/Envek/tenken/issues or send a pull request!\n\n\n## Contributing\n\n 1. Fork it (\u003chttps://github.com/Envek/tenken/fork\u003e)\n 2. Create your feature branch (`git checkout -b my-new-feature`)\n 3. Make your changes\n 4. Write tests for them, make sure that `rake test` passes\n 5. Commit your changes (`git commit -am 'Add some feature'`)\n 6. Push to the branch (`git push origin my-new-feature`)\n 7. Create a new Pull Request\n\n\n## Boring legal stuff\n\n\u003e Copyright © 2016 Andrey Novikov\n\u003e\n\u003e MIT License\n\u003e\n\u003e Permission is hereby granted, free of charge, to any person obtaining\n\u003e a copy of this software and associated documentation files (the\n\u003e \"Software\"), to deal in the Software without restriction, including\n\u003e without limitation the rights to use, copy, modify, merge, publish,\n\u003e distribute, sublicense, and/or sell copies of the Software, and to\n\u003e permit persons to whom the Software is furnished to do so, subject to\n\u003e the following conditions:\n\u003e\n\u003e The above copyright notice and this permission notice shall be\n\u003e included in all copies or substantial portions of the Software.\n\u003e\n\u003e THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n\u003e EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n\u003e MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n\u003e NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\n\u003e LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\n\u003e OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n\u003e WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fenvek%2Ftenken","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fenvek%2Ftenken","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fenvek%2Ftenken/lists"}