Skip to content

tighten/ozzie

Repository files navigation

Ozzie logo


Ozzie

Run tests

Ozzie is Tighten's open source projects monitor. Each project is assigned a "debt score" based on how many open issues/PRs there are, and how old they are.

Local Installation

  1. Clone the repo (git clone git@github.com:tighten/ozzie.git && cd ozzie)
  2. Install dependencies (composer install && npm install)
  3. Run valet secure to use https for the local domain
  4. Update APP_URL in .env to use your local valet TLD. By default, it will use https://ozzie.test
  5. Create a GitHub OAuth Application. If you use Valet to serve your application locally, you can use the following settings:
    • Application Name: Local Ozzie
    • Homepage URL: https://ozzie.test
    • Application Description: Local Version of Ozzie
    • Authorization Callback URL: http://ozzie.test/auth/callback
  6. Copy the example .env file: cp .env.example .env and modify its settings to match your local install, including the client ID and secret from the previous step
  7. Run php artisan key:generate
  8. Create a database (by default .env looks for one named ozzie) and run the migrations (php artisan migrate)
  9. Fetch the projects list (into the database) by using the projects:fetch command. Alternatively, you can seed your projects table using a projects.json file at the root of the project (see below for more info).
  10. Fetch all projects' stats for the first time using stats:fetch

Note: If you're not using a tool like Laravel Valet, run php artisan serve and visit your site at http://127.0.0.1:8000; you'll also want to modify your GitHub app settings to use http://127.0.0.1:8000 instead of http://ozzie.test

Projects and Daily Caching

If you'd like to seed projects manually, you can do so using the projects.json file in your app root. If you don't create one, the system will fall back to projects.json.dist, which also serves as a helpful template for you to create your own projects.json file.

Here's what the structure of the file looks like:

[
    {
        "name": "ziggy",
        "namespace": "tighten",
        "packagist": "tightenco/ziggy",
        "maintainers": [
            "mattstauffer"
        ]
    },
]

Each project in this file will need its GitHub namespace, the GitHub project name, and the GitHub usernames of all of its maintainers.

Changing or Adding Projects

Using the GitHub API, new public repos added to the organization will be added automatically (checked daily) through the projects:fetch command.

If you're doing it manually, any changes to projects needs to happen in projects.json first. Migrating and seeding tables fresh will update the projects table with the new info, and the next call of php artisan stats:fetch will re-populate project stats.

  1. Make a change to projects.json
  2. Re-run the seeder: php artisan db:seed
  3. Fetch all project stats: php artisan stats:fetch

Daily Caching

Every time the php artisan stats:snapshot command is run, it captures the scores for each project (for historical comparison).

If you're using the scheduler, it'll already be scheduled to run every day (see the docs for how to set up the scheduler cron job).

By default, re-running the command on the same day will not update the day's existing snapshots. To override this behavior, use the -f flag, which will both create any missing snapshots for the day and update all existing snapshots for the day.

php artisan stats:snapshot -f

Local Development

Compiling the Frontend Assets

Use Vite to automatically compile JS/CSS on save:

npm run dev

Running the Linter Tools

This project uses Duster to fix PHP, Prettier to fix JS, and StyleLint to lint & fix CSS.

To automatically fix PHP:

composer fix

To automatically fix JS:

npm run fix-js

To automatically fix CSS:

npm run fix-css

Contributing

Please see CONTRIBUTING for details.

Credits

License

The MIT License (MIT). Please see LICENSE for details.