Home

Awesome

Docdress

A package to create markdown documentations from GitHub repositories in your Laravel project. Easy editing for contributors.

Docdress

The example image shows the litstack documenation. The GitHub repository can be found under litstack/litstack.io.

Table Of Contents

<a name="introduction"></a>

Introduction

With Docdress you can turn your project/package documentation within minutes into a web interface with a Laravel-like design.

Docdress offers the following features:

<a name="setup"></a>

Setup

Install Docdress via composer:

composer require aw-studio/docdress

Now publish the required assets and the config:

php artisan vendor:publish --provider="Docdress\DocdressServiceProvider"

You may also publish the config or assetsonly like this:

php artisan vendor:publish --tag="docdress:assets"
php artisan vendor:publish --tag="docdress:config"

<a name="add-repository-to-config"></a>

Add repository to Config

Add the desired repository to the docdress config.

'repos' => [
    'my/repo' => [
        //
    ],
],

<a name="clone-repository"></a>

Clone repository

Once you have configured the repository, you must clone it using docdress:clone:

php artisan docdress:clone "my/repo"

<a name="structure"></a>

Structure

<a name="readme-me"></a>

Readme.md

The index is built as a nested list in the readme.md. It is located under ## Index. So your readme.md could look like this:

# My Package

Hello World.

## Index

-   ## Getting Started
    -   [Introduction](introduction.md)
    -   [Installation](installation.md)
-   ## Foo
    -   [Bar](subfolder/bar.md)

<a name="toc"></a>

Table of Contents

The table of contents is built from all ## and ### headings under the # heading. No link tag with a nameattribute is needed. You can easily build your markdown file as follows:

# Title

## Introduction

...

<a name="configuration"></a>

Configuration

With Docdress any number of repositories can be documented in one laravel project. Each repository is configured in docdress.repos like so:

'repos' => [
    'my/repo' => [
        // ...
    ],
],

The following attributes can be configured for a repository:

Some of the attributes are discussed in more detail below:

<a name="versions"></a>

Versions

Every version is representing a branch. Set the default_version to your default branch. The versions are specified as branch name and title, like so:

'repos' => [

    'my/repo' => [
        // ...
        'default_version' => 'master',
        'versions'        => [
            'master' => 'Master',
            '1.0'    => '1.0'
        ]'
    ],

],

<a name="private-repositories"></a>

Private repositories

Private repositories require a personal access token with the read permissions for the repository.

'repos' => [

    'my/repo' => [
        // ...
        'access_token' => env('GITHUB_ACCESS_TOKEN', null)
    ],

],

<a name="subfolder"></a>

Subfolder

You may have the documentation of a project or a package in a subfolder of the corresponding repository. If a subfolder is specified in the config, only this folder is cloned and displayed.

'repos' => [

    'my/repo' => [
        // ...
        'subfolder' => 'docs'
    ],

],

<a name="webhook"></a>

Webhook

If you want the latest version to be automatically updated with every push, you have to set a webhook with the url _docdress/update.

webhook-url

Additionally the Content-Type must be set to application/json.

webhook-content-type

And the token from your config must be specified.

'repos' => [

    'my/repo' => [
        // ...

        'webhook_token' => env('GITHUB_WEBHOOK_TOKEN', null),
    ],

],

<a name="algolia"></a>

Algolia

Docdress Search

Algolia Docsearch can be used for the search of your documenation. All you have to do is to specify your application key for the respective repository.

'repos' => [

    'my/repo' => [
        // ...

        'algolia_app_key' => env('ALGOLIA_APP_KEY', null),
    ],

],
<a name="authorization">

Authorization

You may create gate for a repository in the boot method of your AuthServiceProvider to manage access to the documentation.

use Docdress\Docdress;

public function boot()
{
    $this->registerPolicies();

    Docdress::gate('my/repo', function ($user) {
        return $user->is_admin;
    });
}
<a name="alerts">

Alerts

You may display alerts just like custom-blocks in vuepress. The available alert types are tip, warning, danger

::: tip

Hello World!

:::
::: warning

Hello World!

:::
::: danger

Hello World!

:::

alert-tip alert-warning alert-danger

<a name="search-component">

Search Component

By using the x-dd-search-input component. You can place the algolia search input in your blade views. The component needs the repo that should be searched and the desired version.

<x-dd-search-input repo="my/repo" version="1.0" />
<a name="testing">

Testing

Execute tests via composer:

composer test