This is the BIIGLE module to review image annotations in a regular grid.
This module is already included in biigle/biigle
.
composer require biigle/largo
.pip install -r requirements.txt
.Biigle\Modules\Largo\LargoServiceProvider::class
to the providers
array in config/app.php
.php artisan vendor:publish --tag=public
to publish the public assets of this module.LARGO_PATCH_STORAGE_DISK
variable to the name of this storage disk in the .env
file. The content of the storage disk should be publicly accessible. Example for a local disk:
'largo' => [
'driver' => 'local',
'root' => storage_path('app/public/largo-patches'),
'url' => env('APP_URL').'/storage/largo-patches',
'visibility' => 'public',
],
This requires the link storage -> ../storage/app/public
in the public
directory.
Take a look at the development guide of the core repository to get started with the development setup.
Want to develop a new module? Head over to the biigle/module template repository.
Contributions to BIIGLE are always welcome. Check out the contribution guide to get started.