/drupal-under-the-hood

Screencast code, script and Drupal nodes behind "Drupal 8: Under the Hood"

Primary LanguagePHPGNU General Public License v2.0GPL-2.0

Drupal 8 Under the Hood!

You're viewing the code - in all its glory for the KnpUniversity Tutorial: [https://knpuniversity.com/screencast/drupal8-under-the-hood](Drupal 8: IUnder the Hood).

Installation

We start this tutorial from scratch: by installing Drupal. But, you can get this code up and running by doing the following:

Download Composer dependencies

Make sure you have Composer installed and then run:

composer install

You may alternatively need to run php composer.phar install, depending on how you installed Composer.

Setting up the Site & Database

Check that the database settings in sites/default/settings.php are correct for your system.

Start the built-in web server

You can use Nginx or Apache, but the built-in web server works great:

php -S localhost:8000

Now check out the site at http://localhost:8000 and go through the installation process.

Have fun!