Skip to content

julianstewart/shoe_store

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Shoe Store Inventory

An application that lists out local shoe stores and the brands of shoes they carry, 2015.08.28

By Julian Stewart

Setup

This project makes use of a PHP dependency manager. Full details and installation instructions can be found at getcomposer.org.

Your computer must also be set up to support PDO (PHP Data Objects) and MySQL. There are a variety of free tools available to configure your computer, including MAMP (MacOS) and LAMP (Windows), as well as ample documentation online.

To run the application:

  • Start your local PHP server from the web/ directory within the project folder
  • Start your MySQL server, being sure to adjust the port number as needed
  • Import the databases included in this repository, or run the following commands:
CREATE DATABASE shoes;
CREATE TABLE stores (id serial PRIMARY KEY, store_name VARCHAR (255));
CREATE TABLE brands (id serial PRIMARY KEY, brand_name VARCHAR (255));
CREATE TABLE brands_stores (id serial PRIMARY KEY, store_id INT, brand_id INT);
  • Point your browser to your localhost server

Technologies Used

PHP, MySQL, Silex, Twig

Legal

Copyright (c) 2015 Julian Stewart

This software is licensed under the MIT license.

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages