biigle/reports

BIIGLE模块,用于生成项目和视频的报表。


README

Test status

这是用于生成项目和卷报表的BIIGLE模块。

安装

此模块已包含在 biigle/biigle 中。

  1. 运行 composer require biigle/reports
  2. Biigle\Modules\Reports\ReportsServiceProvider::class 添加到 config/app.php 中的 providers 数组。
  3. 运行 php artisan vendor:publish --tag=public 以发布此模块的公共资产。
  4. 运行 pip install -r vendor/biigle/reports/requirements.txt 以安装Python依赖项。
  5. 配置报表文件的存储磁盘,并在 .env 文件中将 REPORTS_STORAGE_DISK 变量设置为存储磁盘的名称。例如,对于本地磁盘:
    'reports' => [
        'driver' => 'local',
        'root' => storage_path('reports'),
    ],

开发

查看核心存储库的 开发指南 以开始开发设置。

想要开发新模块?请访问 biigle/module 模板存储库。

贡献和错误报告

BIIGLE始终欢迎贡献。查看 贡献指南 以开始。