JDBOC / Projet2-Lattitude

création d'un site marchand dynamique d'éditeur de jeux vidéo

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Simple MVC

Description

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 chose one of their databases and see tables in it.

Steps

  1. Clone the repos from Github.
  2. Run composer install.
  3. 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_PWD', 'your_db_password');
  1. Import simple-mvc.sql in your SQL server,
  2. Run the internal PHP webserver with php -S localhost:8000 -t public/. The option -t with public as parameter, mean your localhost will target the /public folder.
  3. Go to localhost:8000 with your favorite browser.
  4. From this starter kit, create your own web application.

03/07/2018 @wildcodeschool.fr

About

création d'un site marchand dynamique d'éditeur de jeux vidéo


Languages

Language:PHP 47.2%Language:HTML 28.3%Language:Rich Text Format 23.8%Language:CSS 0.7%