Heartnesia 2.x web app is based on by Drupal 8.x with some of our own modules.
-
Install XAMPP
-
Edit Apache's php.ini and uncomment:
extension=php_openssl.dll
-
Git clone under
C:/xampp/htdocs
folder -
Composer install dependencies:
composer -vvv install
-
Run Notepad as administrator, edit
C:\Windows\System32\drivers\etc\hosts
and append: (use your own local hostname)127.0.0.1 heartnesia.com.amanahwin
-
Edit
C:\xampp\apache\conf\extra\httpd-vhosts.conf
and append: (use your own local hostname)<VirtualHost *:80> ServerName heartnesia.com.amanahwin DocumentRoot "C:/xampp/htdocs/heartnesia.com" SetEnv APPLICATION_ENV "development" <Directory "C:/xampp/htdocs/heartnesia.com"> DirectoryIndex index.php AllowOverride All Order allow,deny Allow from all </Directory> </VirtualHost>