Clean-room copy of the reusable engines from comiida, with all instance data, secrets, dependencies, and build output excluded: - app/ Astro theme skeleton (no comiida blog posts; hero image -> placeholder) - api/ SeedProject PHP framework (no vendor/.env/config.php) - content-pipeline/ engine only (scripts/admin/prompts; empty runtime state) - astroagent.config.json + app/.astroagent/skills Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01SYHWLHihq3v9nxNwoPCKSn
17 lines
No EOL
485 B
PHP
17 lines
No EOL
485 B
PHP
#!/usr/bin/env php
|
|
<?php
|
|
# Documentation https://symfony.com/doc/current/console.html
|
|
# Everytime you added a new command you need to run: composer dump -o
|
|
# Usage: php console app:ticker ltcusdt
|
|
|
|
require __DIR__ . '/vendor/autoload.php';
|
|
|
|
use Symfony\Component\Console\Application;
|
|
|
|
$application = new Application();
|
|
|
|
# add our commands
|
|
$application->add(new GreetCommand());
|
|
//$application->add(new Sentinel());
|
|
//$application->add(new Engine());
|
|
$application->run(); |