https://github.com/fakorede/shopable
An e-commerce application built with Laravel 7
https://github.com/fakorede/shopable
Last synced: about 1 month ago
JSON representation
An e-commerce application built with Laravel 7
- Host: GitHub
- URL: https://github.com/fakorede/shopable
- Owner: Fakorede
- Created: 2020-07-06T01:01:57.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-06T10:43:14.000Z (over 2 years ago)
- Last Synced: 2025-04-22T23:15:55.622Z (about 1 month ago)
- Language: HTML
- Homepage: https://shoppable.herokuapp.com
- Size: 8.09 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 23
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[](https://github.com/ellerbrock/open-source-badges/)
# Shopable
Shopable is an e-commerce application built with Laravel 7.
## Getting Started
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes.
## Pre-requisites
What things you need to install the software.
- Git
- PHP
- Composer
- Web Server like Nginx or Apache
- Npm or Yarn## Installation
Clone the git repository on your computer
```
$ git clone https://github.com/fakorede/shopable.git
```You can also download the entire repository as a zip file and unpack in on your computer if you do not have git
After cloning the application, you need to install it's dependencies.
```
$ cd shopable
$ composer install
$ npm install
```## Setup
When you are done with installation, copy the .env.example file to .env
```
$ cp .env.example .env
```Generate the application key
```
$ php artisan key:generate
```Create database and add its configuration
```
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=your_db_name
DB_USERNAME=your_db_username
DB_PASSWORD=your_db_password
```Run database migrations
```
$ php artisan migrate
```Run the app
```
$ php artisan serve
```## Built With
- Laravel - The PHP framework used for building the backend of the application