Code Monkey home page Code Monkey logo

gourmetplace's Introduction

GourmetPlace - Restaurant Website

Welcome to the official repository for GourmetPlace, a dynamic and interactive restaurant website designed using PHP, HTML, and CSS. This site includes several features to enhance the dining experience of our guests by providing detailed information online. This project is kept simple as it marks my first endeavor into web development, focusing on fundamental features and design.

Restaurant Homepage Image of the homepage of GourmetPlace

Features

  • Home: The landing page that welcomes visitors and provides a brief introduction to our restaurant.
  • Reservation: Allows customers to book tables online. Includes date, time, and special request options.
  • Menu: Showcases our diverse culinary offerings with detailed descriptions and enticing images.
  • Events: Information on upcoming events and special evenings hosted at the restaurant.
  • About Us: Shares the story of our restaurant, our culinary philosophy, and introduces our team.
  • Config: A back-end configuration page to manage website settings (not accessible to the public).

Getting Started

Follow these instructions to get a copy of the project up and running on your local machine for development and testing purposes.

Prerequisites

You will need:

  • PHP 7.4 or newer.
  • Apache or Nginx web server.
  • MySQL or any preferred SQL database for managing reservations and menu items (optional).

Installation

  1. Clone the repository

    git clone https://github.com/yourusername/GourmetPlace.git
    cd GourmetPlace
  2. Web Server Configuration

    For Apache Users: Create a virtual host entry like below:

    <VirtualHost *:80>
        ServerName gourmetplace.local
        DocumentRoot "/path/to/GourmetPlace"
        <Directory "/path/to/GourmetPlace">
            AllowOverride All
            Require all granted
        </Directory>
    </VirtualHost>

    For Nginx Users: Set up a server block:

    server {
        listen 80;
        server_name gourmetplace.local;
        root /path/to/GourmetPlace;
        index index.php;
        location / {
            try_files $uri $uri/ =404;
        }
        location ~ \.php$ {
            include snippets/fastcgi-php.conf;
            fastcgi_pass unix:/var/run/php/php7.4-fpm.sock;
        }
    }
  3. Start your web server and visit http://gourmetplace.local in your browser to view the site.

Built With

  • HTML - Structure of the web pages.
  • CSS - Styling of the web components.
  • PHP - Backend logic and server-side integration.

Authors

gourmetplace's People

Contributors

omarnouih avatar

Stargazers

 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.