This repository is a simple PHP MVC structure from scratch.
It uses some cool vendors/libraries such as Twig and Grumphp. For this one, just a simple example where users can choose one of their databases and see tables in it.
- Clone the repo from Github.
- Run
composer install
. - Create config/db.php from config/db.php.dist file and add your DB parameters. Don't delete the .dist file, it must be kept.
define('APP_DB_HOST', 'your_db_host');
define('APP_DB_NAME', 'your_db_name');
define('APP_DB_USER', 'your_db_user_wich_is_not_root');
define('APP_DB_PASSWORD', 'your_db_password');
- Import database.sql in your SQL server, you can do it manually or use the migration.php script which will import a database.sql file.
- Run the internal PHP webserver with
php -S localhost:8000 -t public/
. The option-t
withpublic
as parameter means your localhost will target the/public
folder. - Go to
localhost:8000
with your favorite browser. - From this starter kit, create your own web application.
If you develop on Windows, you should edit you git configuration to change your end of line rules with this command :
git config --global core.autocrlf true
An example (a basic list of items) is provided (you can load the simple-mvc.sql file in a test database). The accessible URLs are :
- Home page at localhost:8000/
- Items list at localhost:8000/items
- Item details localhost:8000/items/show?id=:id
- Item edit localhost:8000/items/edit?id=:id
- Item add localhost:8000/items/add
- Item deletion localhost:8000/items/delete?id=:id
You can find all these routes declared in the file src/routes.php
. This is the very same file where you'll add your own new routes to the application.
We prepare a little guided tour to start with the simple-MVC.
To take it, you need to install the Code Tour
extension for Visual Studio Code : Code Tour
It will give access to a new menu on your IDE where you'll find the different tours about the simple-MVC. Click on play to start one :
If you don't know what is docker, skip this chapter. ;)
Otherwise, you probably see, this project is ready to use with docker.
To build the image, go into the project directory and in your CLI type:
docker build -t simple-mvc-container .
then, run it to open it on your localhot :
docker run -i -t --name simple-mvc -p 80:80 simple-mvc-container
-
Clone the repo from Github.
-
Run
composer install
. -
Run the file
af_database.sql
with MySQL -
Create config/db.php from config/db.php.dist file and add your DB parameters.
define('APP_DB_HOST', 'localhost');
define('APP_DB_NAME', 'aeterna_fabula');
define('APP_DB_USER', 'your_db_user_wich_is_not_root');
define('APP_DB_PWD', 'your_db_password');
-
Run the internal PHP webserver with
php -S localhost:8000 -t public/
. -
Go to
localhost:8000
with your favorite browser.
- Home page at localhost:8000/
- Launch a new game and retrieve your historics at localhost:8000/Alias
- Read the introduction at localhost:8000/incipit
- Play at localhost:8000/chapter/show?id=1
- Get the list of the chapters at localhost:8000/chapters
- Add a new chapter at localhost:8000/chapters/admin_add
- Add new actions at localhost:8000/actions/admin_add_action
As a player, you can play new games and get the historics related to each games.
Mail : [email protected]
Password : AF-mdp-123
As an admin, you can add new chapters and new actions to the story.
Mail : [email protected]
Password : AF-mdp-123
Æterna Fabula is a school project created by :
All images are created with Midjourney