Skip to content

Latest commit

 

History

History
47 lines (36 loc) · 1.22 KB

README.md

File metadata and controls

47 lines (36 loc) · 1.22 KB

CodeIgniter4 Viewi Tour of Heroes app

This repository demonstrates CodeIgniter4 and Viewi integration with Tour of Heroes app.

This tutorial app comes from:

If you want to know CodeIgniter4 and Viewi, see CodeIgniter4 Viewi Demo.

How to Run

$ git clone https://github.com/kenjis/ci4-viewi-tour-of-heroes.git
$ cd ci4-viewi-tour-of-heroes/
$ composer install
$ php spark serve

Navigate to http://localhost:8080/.

Folder Structure

.
├── app/
│   ├── Adapters/ ... Adapters for Viewi
│   └── ViewiApp/ ... Viewi App
│        ├── Components/
│        │   ├── Models/
│        │   ├── Services/
│        │   └── Views/
│        ├── build/     ... Do not touch
│        ├── config.php ... Viewi config file
│        └── routes.php ... Viewi routes file
├── public/
│   └── viewi-build/ ... Do not touch

References