/HitchinCoffeeLab

Prototype website for the Hitchin Coffee Lab coffee shop

Primary LanguagePHP

Synopsis

This project is a prototype website for Hitchin Coffee Lab - a new coffee shop in the Hertfordshire town of Hitchin. The website is designed using HTML/HTML5, CSS/LESS and Bootstrap and developed using JavaScript/jQuery as well as PHP and MySQL.

Motivation

The main purpose of this project is to enhance my personal project portfolio as well as simulate a standard web development lifecycle project.

Installation

For example if you are using the LAMP Stack on Ubuntu, please do the following using the terminal:

  1. Access the following file and edit using your preferred text editor (e.g. nano or vim):
  2. - /etc/apache2/sites-enabled/000-default.conf
  3. Inside your 000-default.conf file, add the following code at the bottom of the file:

  4. <VirtualHost *:80>
    ServerName hitchincoffeelab.dev
    DocumentRoot /var/www/HitchinCoffeeLab/public
    SetEnv APPLICATION_ENV "development"
    <Directory /var/www/HitchinCoffeeLab/public>
    Options FollowSymLinks
    DirectoryIndex index.php
    AllowOverride All
    Order allow,deny
    Allow from all
    </Directory>
    </VirtualHost>

  5. Then access your hosts file (/etc/hosts) and add a new line underneath your existing hosts with the following code:
  6. 127.0.0.1 hitchincoffeelab.dev localhost

Please note that these above details will be different if you choose to use your own personal web server as opposed to localhost or if you plan to use another web-server stack such as MAMP, XAMPP, WAMP, etc.