Green B presents The Kind Guide database, a web app empowering the cannabis community and the industry to track growth in ever more sustainable directions.
greenbconsulting/kindguide is a Laravel package for green b presents the kind guide database, a web app empowering the cannabis community and the industry to track growth in ever more sustainable directions..
It currently has 1 GitHub stars and 4 downloads on Packagist (latest version v0.4).
Install it with composer require greenbconsulting/kindguide.
Discover more Laravel packages by greenbconsulting
or browse all Laravel packages to compare alternatives.
Last updated
Green B presents The Kind Guide database, a web app empowering the cannabis community and the industry to track growth in ever more sustainable directions. The site helps collect data and information to inform this pollination. The Kind Guide database is built using SurvLoop, atop Laravel. http://GoGreenB.org SurvLoop is a Laravel-based engine for designing a database and creating a mobile-friendly user interface to fill it.
The instructions below include the needed steps to install Laravel, SurvLoop, as well as the Kind Guide system. For more on creating environments to host Laravel, you can find more instructions on SurvLoop.org.
$ composer global require "laravel/installer"
$ composer create-project laravel/laravel KindGuide "5.7.*"
$ cd KindGuide
$ php artisan make:auth
$ php artisan vendor:publish --tag=laravel-notifications
composer.json to add requirements and an easier Kind Guide reference:$ nano composer.json
...
"require": {
...
"greenbconsulting/kindguide": "0.*",
...
},
...
"autoload": {
...
"psr-4": {
...
"KindGuide\\": "vendor/greenbconsulting/kindguide/src/",
}
...
},
...
$ composer update
config/app.php.$ nano config/app.php
...
'providers' => [
...
SurvLoop\SurvLoopServiceProvider::class,
KindGuide\KindGuideServiceProvider::class,
...
],
...
'aliases' => [
...
'SurvLoop' => 'RockHopSoft\SurvLoop\SurvLoopFacade',
'KindGuide' => 'GreenBConsulting\KindGuide\KindGuideFacade',
...
],
...
config/auth.php.$ nano config/auth.php
...
'model' => App\Models\User::class,
...
$ php artisan vendor:publish --force
$ php artisan migrate
$ composer dump-autoload
$ php artisan db:seed --class=SurvLoopSeeder
$ php artisan db:seed --class=KindGuideSeeder
$ chown -R www-data:33 app/Models
$ chown -R www-data:33 database
Browse to load the style sheets, etc.. /dashboard/css-reload
Log into The Kind Guide admin dashboard...
user: open@thekind.guide
password: KindGuide
Once installed, documentation of this system's database design can be found at /dashboard/db/all . This system's user experience design for data entry can be found at /dashboard/tree/map?all=1&alt=1 .
Here's the TODO list for the next release (1.0). It's my first time building on Laravel, or GitHub. So sorry.
Please help educate me on best practices for sharing code in this community. Please report any issue you find in the issues page.
We want to ensure that SurvLoop is a secure HTTP open data platform for everyone. If you've discovered a security vulnerability at App.TheKind.Guide, we appreciate your help in disclosing it to us in a responsible manner.
Publicly disclosing a vulnerability can put the entire community at risk. If you've discovered a security concern, please email us at rockhoppers at runbox.com. We'll work with you to make sure that we understand the scope of the issue, and that we fully address your concern. We consider correspondence sent to rockhoppers at runbox.com our highest priority, and work to address any issues that arise as quickly as possible.
After a security vulnerability has been corrected, a release will be deployed as soon as possible.