codex / git
Codex Addon - Enables Github/Bitbucket integration & synchronisation (auto-webhook or manual) based on tags/branches.
Requires
- codex/core: ~2.0
- graham-campbell/bitbucket: ~4.1
- graham-campbell/github: ~7.3
- graham-campbell/manager: ~4.0
- league/oauth2-client: ~2.3
- league/oauth2-github: ~2.0
- php-http/guzzle6-adapter: 1.1.*
- stevenmaguire/oauth2-bitbucket: ~3.0
- vierbergenlars/php-semver: 3.0.*
Suggests
- codex/algolia-search: Integrates algolia search into codex (~2.0)
- codex/auth: Provides authentication using oauth providers (socialite) to restrict project access (~2.0)
- codex/blog: Provides blogging capability with categories containing posts (~2.0)
- codex/comments: Adds comments to your documents like Disqus or create your own adapter (~2.0)
- codex/filesystems: Adds a collection of common filesystem adapters. These can be used by your projects. (~2.0)
- codex/packagist: Integrates Packagist information links and macros in your projects (~2.0)
- codex/phpdoc: Integrates PHPDoc documentation, links and macros in your projects (~2.0)
- codex/sitemap: Generates a sitemap.xml (~2.0)
This package is auto-updated.
Last update: 2024-10-12 00:23:50 UTC
README
Git
The git addon allows your Codex project to fetch documentation from any bitbucket/github repository. Either by manual synchronisation or automated synchronisation using webhooks.
Lets say you have a repository on github with a directory named docs
, containing all your documentation.
The git addon has the ability to sync your repository's branches/tags to your local project's revisions.
It's even possible to create a github webhook to your Codex project, making Codex automatically synchronise the latest changes.
Installation
composer require codex/git php artisan codex:addon enable codex/git php artisan vendor:publish --provider="Codex\Git\GitAddonServiceProvider"
Project Configuration
You can add the git addon configuration to your project's config.php
.
[ // ... 'git' => [ 'remotes' => [ 'main' => [ // The connection key to use (as defined at the top of this file) 'connection' => '', // The owner (organisation or username) 'owner' => '', // The repository name 'repository' => '', // repository url 'url' => 'https://bitbucket.org/%s/%s', 'document_url' => 'https://bitbucket.org/%s/%s/src/%s', 'webhook' => [ // Enable webhook support. Configure it in Github/Bitbucket. // This will automaticly sync your project every time a 'push' event occurs // This also requires you to configure queues properly (by using for example, redis with supervisord) 'enabled' => false, // Github webhooks allow a 'secret' that has to match. Put it in here 'secret' => null, ], ], ], 'syncs' => [ [ 'remote' => 'main', // Branches to sync 'branches' => [], //[ 'master'] // Version (tags) constraints makes one able to define ranges and whatnot // * || 1.x || >=2.5.0 || 5.0.0 - 7.2.3' 'versions' => null, 'skip' => [ 'patch_versions' => false, 'minor_versions' => false, ], 'clean' => [ ], 'copy' => [ 'docs', 'docs/ ** /*.md', 'docs/index.md' => 'index.md', 'README.md' => 'index.md', ], ], ], 'links' => [ 'enabled' => false, 'remote' => 'main', 'map' => [ 'edit_page' => 'layout.toolbar.right', // push attribute to array (default) ], 'links' => [ 'edit_page' => [ 'component' => 'c-button', 'borderless' => true, 'target' => '_black', 'type' => 'toolbar', /** git.connection_config is a get modifier in Document @see \Codex\Git\GitAddonServiceProvider */ // 'icon' => '%remote.connection.driver%', 'children' => 'Edit Page', /** git_links.document_url is a get modifier in Document @see \Codex\Git\GitAddonServiceProvider */ // 'href' => '%remote.document_url%', ], ], ], ], ];
Global Configuration
Located in config/codex-git.php
return [ 'connections' => [ 'bitbucket_oauth' => [ 'driver' => 'bitbucket', 'method' => 'oauth', 'key' => env('CODEX_GIT_BITBUCKET_KEY', 'your-key'), 'secret' => env('CODEX_GIT_BITBUCKET_SECRET', 'your-secret'), ], 'bitbucket_password' => [ 'driver' => 'bitbucket', 'method' => 'password', 'username' => env('CODEX_GIT_BITBUCKET_USERNAME', 'your-username'), 'password' => env('CODEX_GIT_BITBUCKET_PASSWORD', 'your-password'), ], 'github_token' => [ 'driver' => 'github', 'method' => 'token', 'token' => env('CODEX_GIT_GITHUB_TOKEN', 'your-token'), ], 'github_password' => [ 'driver' => 'github', 'method' => 'password', 'username' => env('CODEX_GIT_GITHUB_USERNAME', 'your-username'), 'password' => env('CODEX_GIT_GITHUB_PASSWORD', 'your-password'), ], 'github_app' => [ 'driver' => 'github', 'clientId' => 'your-client-id', 'clientSecret' => 'your-client-secret', 'method' => 'application', ], 'github_jwt' => [ 'driver' => 'github', 'token' => 'your-jwt-token', 'method' => 'jwt', ], ], // ... ];
Synchronising
Manual synchronisation
php artisan codex:git:sync [project]
Automatic (webhook) synchronisation
To use automatic synchronisation:
- Automatic synchronisation depends on a working laravel queue driver. Make sure you have it configured and running.
- You need to add a webhook to your github/bitbucket repository. The webhook url should be equal to the
codex.git.webhook.{bitbucket,github}
route url. Usephp artisan route:list
to get it.
Copyright/License
Copyright 2019 Robin Radic - MIT Licensed