removed static generator stuff
This commit is contained in:
@@ -1,10 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<title>{{$title}}</title>
|
|
||||||
<meta http-equiv="refresh" content="0; url='{{$to}}'"/>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<p>{{$message}}</p>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
@@ -1,22 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
namespace Lucent\Commands;
|
|
||||||
|
|
||||||
use DirectoryIterator;
|
|
||||||
use Illuminate\Console\Command;
|
|
||||||
|
|
||||||
class LiveLink extends Command
|
|
||||||
{
|
|
||||||
|
|
||||||
protected $signature = 'lucent:livelink';
|
|
||||||
|
|
||||||
protected $description = 'Create live folder link';
|
|
||||||
|
|
||||||
|
|
||||||
public function handle()
|
|
||||||
{
|
|
||||||
symlink(storage_path("lucent/live"), public_path("live"));
|
|
||||||
$this->info("public link was created");
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -11,13 +11,11 @@ use Lucent\Channel\ChannelService;
|
|||||||
use Lucent\Commands\CompileSchemas;
|
use Lucent\Commands\CompileSchemas;
|
||||||
use Lucent\Commands\GenerateCollectionSchema;
|
use Lucent\Commands\GenerateCollectionSchema;
|
||||||
use Lucent\Commands\GenerateFileSchema;
|
use Lucent\Commands\GenerateFileSchema;
|
||||||
use Lucent\Commands\LiveLink;
|
|
||||||
use Lucent\Commands\RebuildThumbnails;
|
use Lucent\Commands\RebuildThumbnails;
|
||||||
use Lucent\Commands\RemoveOrphanEdges;
|
use Lucent\Commands\RemoveOrphanEdges;
|
||||||
use Lucent\Commands\SetupDatabase;
|
use Lucent\Commands\SetupDatabase;
|
||||||
use Lucent\Commands\UpgradeFiles122;
|
use Lucent\Commands\UpgradeFiles122;
|
||||||
use Lucent\File\FileService;
|
use Lucent\File\FileService;
|
||||||
use Lucent\File\ImageService;
|
|
||||||
use Lucent\Query\DatabaseGraph\DatabaseGraph;
|
use Lucent\Query\DatabaseGraph\DatabaseGraph;
|
||||||
use Lucent\Query\DatabaseGraph\PgsqlDatabaseGraph;
|
use Lucent\Query\DatabaseGraph\PgsqlDatabaseGraph;
|
||||||
use Lucent\Query\DatabaseGraph\SqliteDatabaseGraph;
|
use Lucent\Query\DatabaseGraph\SqliteDatabaseGraph;
|
||||||
@@ -79,7 +77,6 @@ class LucentServiceProvider extends ServiceProvider
|
|||||||
$this->commands([
|
$this->commands([
|
||||||
CompileSchemas::class,
|
CompileSchemas::class,
|
||||||
RebuildThumbnails::class,
|
RebuildThumbnails::class,
|
||||||
LiveLink::class,
|
|
||||||
RemoveOrphanEdges::class,
|
RemoveOrphanEdges::class,
|
||||||
SetupDatabase::class,
|
SetupDatabase::class,
|
||||||
GenerateCollectionSchema::class,
|
GenerateCollectionSchema::class,
|
||||||
|
|||||||
Reference in New Issue
Block a user