azak1r/dscan

EVE Online方向扫描(Dscan)结果分享工具。该工具是Leviathan套件的一部分。

dev-master 2018-12-08 15:55 UTC

This package is auto-updated.

Last update: 2024-09-26 06:03:04 UTC


README

EVE Online D-Scan 解析器,用于正确情报频道分享。本包为Leviathan套件制作。基于Shib-D-Scan-Tool,但更新到最新游戏版本,并迁移到laravel。

Scrutinizer Code Quality Build Status Software License

安装方法

首先使用composer获取包(需先添加到packagist,待定)

composer require azak1r/dscan

数据库

工具包含一些预设的数据库表和数据,需要一些工作。

按照以下顺序运行以下命令

php artisan vendor:publish --tag=migrations // This moves the Migration files to the main App
php artisan vendor:publish --tag=seeds // This moves the Seeder files to the main App

php artisan migrate 

接着运行以下命令

composer dump-autoload
php artisan db:seed --class=DScanDataSeeder 

视图

工具的所有视图都是为了扩展Leviathan套件模板而制作的,因此要修改视图,请运行

php artisan vendor:publish --tag=views

这会将视图添加到您的 /resources/views/vendor/Dscan 文件夹中,然后您可以为自定义样式进行定制。