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.
The main purpose of this project is to enhance my personal project portfolio as well as simulate a standard web development lifecycle project.
For example if you are using the LAMP Stack on Ubuntu, please do the following using the terminal:
- Access the following file and edit using your preferred text editor (e.g. nano or vim): -
- Inside your
000-default.conf
file, add the following code at the bottom of the file: - Then access your hosts file (
/etc/hosts
) and add a new line underneath your existing hosts with the following code:
/etc/apache2/sites-enabled/000-default.conf
<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>
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.