removed static generator stuff

This commit is contained in:
2024-09-27 23:22:22 +03:00
parent cebe24ea67
commit 55db377abf
3 changed files with 0 additions and 35 deletions
-10
View File
@@ -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>
-22
View File
@@ -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");
}
}
-3
View File
@@ -11,13 +11,11 @@ use Lucent\Channel\ChannelService;
use Lucent\Commands\CompileSchemas;
use Lucent\Commands\GenerateCollectionSchema;
use Lucent\Commands\GenerateFileSchema;
use Lucent\Commands\LiveLink;
use Lucent\Commands\RebuildThumbnails;
use Lucent\Commands\RemoveOrphanEdges;
use Lucent\Commands\SetupDatabase;
use Lucent\Commands\UpgradeFiles122;
use Lucent\File\FileService;
use Lucent\File\ImageService;
use Lucent\Query\DatabaseGraph\DatabaseGraph;
use Lucent\Query\DatabaseGraph\PgsqlDatabaseGraph;
use Lucent\Query\DatabaseGraph\SqliteDatabaseGraph;
@@ -79,7 +77,6 @@ class LucentServiceProvider extends ServiceProvider
$this->commands([
CompileSchemas::class,
RebuildThumbnails::class,
LiveLink::class,
RemoveOrphanEdges::class,
SetupDatabase::class,
GenerateCollectionSchema::class,