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
35 lines
No EOL
706 B
PHP
35 lines
No EOL
706 B
PHP
<?php
|
|
|
|
class I extends Controller {
|
|
|
|
function __construct() {
|
|
parent::__construct();
|
|
|
|
$this->Styles['commenta'] = '<!-- Css files -->';
|
|
$this->view->Styles = $this->Styles;
|
|
|
|
$this->JavaScript[] = "/install/assets/jquery.min.js";
|
|
$this->JavaScript[] = "/install/assets/custom.js";
|
|
$this->view->JavaScript = $this->JavaScript;
|
|
|
|
}
|
|
|
|
function index() {
|
|
die();
|
|
}
|
|
|
|
function requirements(){
|
|
$this->view->render('index/requirements');
|
|
}
|
|
|
|
function setup(){
|
|
$this->view->render('index/setup');
|
|
}
|
|
|
|
function complete(){
|
|
$this->view->render('index/complete');
|
|
}
|
|
|
|
|
|
|
|
} |