cd htdocs composer install
htdocs as the document root.htdocs/app/config.php for your environment (database, mail, theme, etc).1f_test)mysql -u username -p database_name < mysql/db_instal.sql
php bin/migrate.php
php bin/create_admin.php
What’s Included: Only essential tables for a fresh install. No user, admin, or demo data—users start with a clean slate. Ready for migrations and admin creation.
Next Steps: Log in as admin and configure your site. Add modules, users, and content as needed.
DB classTokenManager classapp/start.phpstorage/logs/ via the Logger class/htdocs/modules/htdocs/ — All PHP code, configs, and assets live hereapp/ — Config, core classes, utilitiescontrollers/ — Controllers (one per route)models/ — Data modelsviews/ — View templates and partialsthemes/ — Theme folders (assets, custom views)storage/ — Logs, uploads, and other runtime filesvendor/ — Composer dependencies (auto-generated)htdocs/modules/ — Modular features (user system, forum, etc.)app/start.phpapp/config.phpphp bin/migrate.phpphp bin/rollback.php [steps]php bin/migration_status.phpphp bin/create_migration.php MigrationNamephp bin/seed.phpphp bin/seed.php --downseeds/ directorySee the bin/ and migrations/ folders for more details and examples.