Add Hoid identity and theater mask avatar 🎭
This commit is contained in:
parent
4c0199e71b
commit
ba43da9541
25 changed files with 1622 additions and 62 deletions
29
drafts/ci-templates/examples/project-deploy.php
Normal file
29
drafts/ci-templates/examples/project-deploy.php
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
<?php
|
||||
/**
|
||||
* Example project deploy.php
|
||||
*
|
||||
* This is what each TYPO3 project's build/deploy.php looks like
|
||||
* when using the shared recipe.
|
||||
*/
|
||||
|
||||
namespace Deployer;
|
||||
|
||||
// Option 1: Require from git raw URL (works immediately, no composer)
|
||||
require 'https://git.cloonar.com/Cloonar/ci-templates/raw/branch/main/deployer/typo3-recipe.php';
|
||||
|
||||
// Option 2: Via composer (after adding to require-dev)
|
||||
// require __DIR__ . '/../vendor/cloonar/ci-templates/deployer/typo3-recipe.php';
|
||||
|
||||
// Import project-specific server config
|
||||
import(__DIR__ . '/servers.yaml');
|
||||
|
||||
// Project-specific cachetool sockets
|
||||
host('stage')
|
||||
->set('cachetool', '/var/run/phpfpm/PROJECTNAME.cloonar.dev.sock');
|
||||
|
||||
host('production')
|
||||
->set('cachetool', '/var/run/phpfpm/PROJECTNAME.TLD.sock');
|
||||
|
||||
// Optional: Override settings for this project
|
||||
// set('shared_dirs', array_merge(get('shared_dirs'), ['public/uploads']));
|
||||
// set('keep_releases', 10);
|
||||
Loading…
Add table
Add a link
Reference in a new issue