This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM php:7.4-fpm | |
| RUN apt-get update && apt-get install -y libldb-dev libldap2-dev libzip-dev libpng-dev libjpeg62-turbo-dev libfreetype6-dev \ | |
| && docker-php-ext-configure gd --with-freetype=/usr/include/ --with-jpeg=/usr/include/ \ | |
| && docker-php-ext-install -j$(nproc) zip pdo pdo_mysql gd ldap pcntl opcache |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <video autoplay loop muted playsinline preload="metadata" webkit-playsinline="webkit-playsinline"> | |
| <source src="https://yoururl.test/video/smallerbg-te.mp4" type="video/mp4"/> | |
| </video> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| class LocalValetDriver extends Valet\Drivers\ValetDriver | |
| { | |
| /* | |
| |-------------------------------------------------------------------------- | |
| | Document Root Subdirectory | |
| |-------------------------------------------------------------------------- | |
| | | |
| | This subdirectory contains the public server resources, such as the |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| private function indexVector(SplFileInfo $file, string $content): void | |
| { | |
| $metaData = $this->getMetaData($file, $content); | |
| /** @var RedisVector $redisVectorService */ | |
| $redisVectorService = app(RedisVector::class); | |
| /** @var \Exdeliver\LaraPal\Connectors\VoyageAIEmbedding $voyage */ |
OlderNewer