{"id":13878673,"url":"https://github.com/fastruby/points","last_synced_at":"2025-10-14T20:14:05.141Z","repository":{"id":37474654,"uuid":"295764458","full_name":"fastruby/points","owner":"fastruby","description":"A Rails application to collaboratively estimate stories ","archived":false,"fork":false,"pushed_at":"2025-09-16T15:03:30.000Z","size":2334,"stargazers_count":41,"open_issues_count":31,"forks_count":15,"subscribers_count":4,"default_branch":"main","last_synced_at":"2025-10-14T20:14:03.418Z","etag":null,"topics":["estimates","rails-application","story-points"],"latest_commit_sha":null,"homepage":"https://fastruby.github.io/points/","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/fastruby.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":"CODE_OF_CONDUCT.md","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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2020-09-15T15:05:23.000Z","updated_at":"2025-06-08T15:01:12.000Z","dependencies_parsed_at":"2023-02-15T03:31:02.458Z","dependency_job_id":"a845efd0-43e8-4354-9c6a-5cc2d5391816","html_url":"https://github.com/fastruby/points","commit_stats":{"total_commits":411,"total_committers":31,"mean_commits":"13.258064516129032","dds":0.8029197080291971,"last_synced_commit":"90efa4d8e73e0226ec12a3de5ce8f9bdb3757a11"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/fastruby/points","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fastruby%2Fpoints","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fastruby%2Fpoints/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fastruby%2Fpoints/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fastruby%2Fpoints/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fastruby","download_url":"https://codeload.github.com/fastruby/points/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fastruby%2Fpoints/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279021005,"owners_count":26086946,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-14T02:00:06.444Z","response_time":60,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["estimates","rails-application","story-points"],"created_at":"2024-08-06T08:01:56.406Z","updated_at":"2025-10-14T20:14:05.120Z","avatar_url":"https://github.com/fastruby.png","language":"Ruby","funding_links":[],"categories":["Ruby"],"sub_categories":[],"readme":"# Points\n\n[![Points](https://github.com/fastruby/points/actions/workflows/tests.yml/badge.svg)](https://github.com/fastruby/points/actions/workflows/tests.yml)\n[![Maintainability](https://api.codeclimate.com/v1/badges/2484911d9c021cfee1ce/maintainability)](https://codeclimate.com/github/fastruby/points/maintainability)\n\nThis is a Rails application to collaboratively estimate stories.\n\n## Getting started\n\nTo get started with the app, clone the repo and then install the needed gems running the setup script:\n\n```\n$ ./bin/setup\n```\n\n## Environment Variables\n\n`ORGANIZATION_LOGIN`: This is the organization name as it appears in the GitHub URL, for instance `orgname` in https://github.com/orgname. It is needed to check if users are a part of the organization. Ensure that your membership is set to _public_ when you visit https://github.com/orgs/orgname/people.\n\nIf you don't belong to any organization, you can set up one here: https://github.com/organizations/plan\n\nMake sure you add your organization to the `.env` file like this:\n\n```\nORGANIZATION_LOGIN=orgname\n```\n\n`GITHUB_APP_ID` and `GITHUB_APP_SECRET`: These are the credentials of the OAuth GitHub App that you need to create. Follow the instructions on this link to create one: [Creating an OAuth GitHub App](https://docs.github.com/en/developers/apps/building-oauth-apps/creating-an-oauth-app)\n\nWhen creating the OAuth GitHub App, the `Homepage URL` field should be set to http://localhost:3000, and the `Authorization callback URL` should be http://localhost:3000/users/auth/github/callback.\n\nOnce you create the app and generate credentials for it, make sure you add them to the `.env` file like this:\n\n```\nGITHUB_APP_ID=xxxxxxxxxxxxxxxxxxxx\nGITHUB_APP_SECRET=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n```\n\n`SHOW_DEVELOPER_AUTH=true` can be used to allow easy login without requiring GitHub's setup during local development or in safe review environments.\n\n## Starting the Server\n\n```\n$ rails s\n```\n\nGo to http://localhost:3000\n\n## Running Tests\n\n```\n$ rails spec\n```\n\n## Using Docker\n\n\u003e NOTE: You'll need to have docker and docker-compose installed\n\nBuild the points docker image\n\n```bash\n./bin/setup_with_docker\n```\n\nRun the app\n\n```\n./bin/start_with_docker\n\nor\n\ndocker-compose up web-next\n```\n\n## Admin Users\n\nUsers are created without admin privileges by default, because admin users have access to a few more features related to reports and setting real score of stories.\n\nCurrently, the only way to flag a user as `admin` is a direct database update using either postgres cli or the rails console.\n\nIf you want to set the flag for a user, you can follow these steps:\n\n```bash\nrails console\n\nor\n\ndocker-compose run --rm web rails console\n```\n\nand then:\n\n```ruby\nUser.find_by(email: \"user@example.com\").update_attribute(:admin, true)\n```\n\n## Rack Mini Profiler\n\nTo enable the Rack Mini Profiler widget, add the `?enable_rack_mini_profiler` query string to any url. The widget will stay on for all requests until disabled.\n\nTo disable the Rack Mini Profiler widget, add the `?disable_rack_mini_profiler` query string to any url.\n\n## Contributing\n\nBug reports and pull requests are welcome on GitHub at [https://github.com/fastruby/points](https://github.com/fastruby/points). This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.\n\nWhen Submitting a Pull Request:\n\n- If your PR closes any open GitHub issues, please include `Closes #XXXX` in your comment\n\n- Please include a summary of the change and which issue is fixed or which feature is introduced.\n\n- If changes to the behavior are made, clearly describe what changes.\n\n- If changes to the UI are made, please include screenshots of the before and after.\n\n## License\n\nThe gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).\n\n## Code of Conduct\n\nEveryone interacting in the Points project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/fastruby/points/CODE_OF_CONDUCT.md).\n\n## Sponsorship\n\n![FastRuby.io | Rails Upgrade Services](https://github.com/fastruby/points/raw/main/app/assets/images/fastruby-logo.png)\n\n`Points` is maintained and funded by [FastRuby.io](https://fastruby.io). The names and logos for FastRuby.io are trademarks of The Lean Software Boutique LLC.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffastruby%2Fpoints","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffastruby%2Fpoints","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffastruby%2Fpoints/lists"}