leantony / ecommerce

small laravel ecommerce project

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

A simple e-commerce project using laravel 5

UPDATE

I'm updating the project to take advantage of the new features in the laravel framework. Will commit soon...

To get the project up and running on your local machine, do the following. I assume you already know how to go about laravel, bower composer and npm, so i'll be brief

  • clone it => git clone https://github.com/leantony/ecommerce.git
  • Run composer install, to install dependencies
  • Run npm install to install npm dependencies
  • Run bower install to install bower dependencies
  • Edit the created .env file at the root of your project, to add database credentials, etc
php artisan key:generate
  • create your DB and run the migrations, and database seeders found in the migrations folder, using the commands below
# run all migrations
php artisan migrate
# seed the database. seed data isn't available just yet, but will be added soon
php artisan db:seed
  • Run the following command => gulp default
  • Once the assets are published, run the command
php artisan serve
  • visit the site at localhost:8000

  • NB# This is just an experimental project, done for fun, trying to learn more of the laravel framework.

About

small laravel ecommerce project


Languages

Language:PHP 37.8%Language:HTML 32.7%Language:CSS 26.0%Language:JavaScript 3.5%