2018-12-26 10:00:23 +00:00
< p align = "center" >
< a href = "http://www.bagisto.com" > < img src = "https://bagisto.com/wp-content/themes/bagisto/images/logo.png" alt = "Total Downloads" > < / a >
< / p >
2018-10-26 10:43:16 +00:00
2018-12-26 10:00:23 +00:00
< p align = "center" >
< a href = "https://packagist.org/packages/bagisto/bagisto" > < img src = "https://poser.pugx.org/bagisto/bagisto/d/total.svg" alt = "Total Downloads" > < / a >
< a href = "https://packagist.org/packages/bagisto/bagisto" > < img src = "https://poser.pugx.org/bagisto/bagisto/v/stable.svg" alt = "Latest Stable Version" > < / a >
< a href = "https://packagist.org/packages/bagisto/bagisto" > < img src = "https://poser.pugx.org/bagisto/bagisto/license.svg" alt = "License" > < / a >
2019-01-15 23:15:14 +00:00
< a href = "#backers" > < img src = "https://opencollective.com/bagisto/backers/badge.svg" alt = "Backers on Open Collective" > < / a >
< a href = "#sponsors" > < img src = "https://opencollective.com/bagisto/sponsors/badge.svg" alt = "Sponsors on Open Collective" > < / a >
2018-12-26 10:00:23 +00:00
< / p >
2018-10-26 10:43:16 +00:00
2018-11-23 12:46:18 +00:00
# Topics
2019-01-17 07:39:16 +00:00
1. ### [Introduction ](#1-introduction- )
2. ### [Requirements ](#2-requirements- )
2019-02-05 11:51:26 +00:00
3. ### [Installation & Configuration ](#3-installation--configuration- )
2019-02-05 11:45:17 +00:00
<!-- 4. ### [Installation ](#4-installation- ) -->
4. ### [License ](#4-license- )
5. ### [Miscellaneous ](#5-miscellaneous- )
2018-10-26 10:43:16 +00:00
2019-01-17 06:52:14 +00:00
### 1. Introduction <a name="#1-introduction-"></a>:
2018-10-30 11:33:13 +00:00
2018-10-26 10:43:16 +00:00
[Bagisto ](https://www.bagisto.com ) is a hand tailored E-Commerce framework designed on some of the hottest opensource technologies
2018-10-30 11:33:13 +00:00
such as [Laravel ](https://laravel.com ) a [PHP ](https://secure.php.net/ ) framework, [Vue.js ](https://vuejs.org )
2018-11-26 15:58:57 +00:00
a progressive Javascript framework.
2018-10-26 10:43:16 +00:00
**Bagisto is viable attempt to cut down your time, cost and workforce for building online stores or migrating from physical stores
to the ever demanding online world. Your business whether small or huge it suits all and very simple to set it up.**
2018-11-23 12:05:28 +00:00
**We are also having a forum for any type of your concern, feature request discussions. Please visit: [Bagisto Forums ](https://forums.bagisto.com/ )**
2018-10-30 11:33:13 +00:00
It packs in lots of demanding features that allows your business to scale in no time:
2018-10-26 10:43:16 +00:00
* Multiple Channels, Locale, Currencies.
* Built-in Access Control Layer.
* Beautiful and Responsive Storefront.
* Descriptive and Simple Admin Panel.
* Admin Dashboard.
* Custom Attributes.
* Built on Modular Approach.
* Support for Multiple Store Themes.
* Multistore Inventory System.
* Orders Management System.
* Customer Cart, Wishlist, Product Reviews.
* Simple and Configurable Products.
2018-11-23 12:05:28 +00:00
* Check out [more.... ](https://bagisto.com/features/ ).
2018-10-26 10:43:16 +00:00
2018-10-30 11:33:13 +00:00
**For Developers**:
2018-10-26 11:03:46 +00:00
Dev guys can take advantage of two of the hottest frameworks used in this project Laravel and Vue.js, both of these frameworks have been used in Bagisto.
Bagisto is using power of both of these frameworks and making best out of it out of the box.
2019-01-17 07:28:20 +00:00
### 2. Requirements <a name="#requirements"></a>:
2018-10-26 10:43:16 +00:00
* **OS**: Ubuntu 16.04 LTS or higher.
* **SERVER**: Apache 2 or NGINX
2019-01-22 12:55:47 +00:00
* **RAM**: 2 GB or higher.
2018-10-26 10:43:16 +00:00
* **PHP**: 7.1.17 or higher.
2019-02-05 11:45:17 +00:00
* **Processor**: Clock Cycle 1 Ghz or higher.
2018-10-26 10:43:16 +00:00
* **Mysql**: 5.7.23 or higher.
* **Node**: 8.11.3 LTS or higher.
* **Composer**: 1.6.5 or higher.
2019-02-05 11:45:17 +00:00
### 3. Installation & Configuration <a name="#configuration"></a>:
2018-10-26 10:43:16 +00:00
2019-02-05 11:51:26 +00:00
**Execute these Commands Below As In Their Order**
2018-12-19 10:31:56 +00:00
2019-02-05 11:51:26 +00:00
This downloads the code to your local machine or server:
2018-10-30 11:33:13 +00:00
~~~
2019-02-05 11:45:17 +00:00
1. composer create-project bagisto/bagisto
2018-10-26 10:43:16 +00:00
~~~
2019-02-05 11:51:26 +00:00
##### Now configure your database:
if the above command's process was successful, you will find directory **bagisto** and all of the code will be inside it.
After it set your ** .env** variable, especially the ones below:
* **APP_URL**
* **DB_CONNECTION**
* **DB_HOST**
* **DB_PORT**
* **DB_DATABASE**
* **DB_USERNAME**
* **DB_PASSWORD**
Although you have to set the mailer variables also for full functioning of your store for sending emails at various events by
default.
This command is responsible for creating all necessary tables in your database:
2018-12-19 10:31:56 +00:00
~~~
2019-02-05 11:45:17 +00:00
2. php artisan migrate
2018-12-19 10:31:56 +00:00
~~~
2018-12-19 11:07:52 +00:00
2019-02-05 11:51:26 +00:00
This command is responsible for inserting demo data in your database tables:
2018-10-30 11:33:13 +00:00
~~~
2019-02-05 11:45:17 +00:00
3. php artisan db:seed
2018-10-30 11:33:13 +00:00
~~~
2019-02-05 11:45:17 +00:00
2019-02-05 11:51:26 +00:00
This command will publish all the media, frontend scripts, styles and configurations:
2018-10-30 11:33:13 +00:00
~~~
2019-02-05 11:45:17 +00:00
4. php artisan vendor:publish
-> Press 0 and then press enter to publish all assets and configurations.
2018-10-30 11:33:13 +00:00
~~~
2018-11-17 06:41:14 +00:00
2019-02-05 11:51:26 +00:00
This command is necessary to make symlink between your public folder and storage folder:
2018-10-26 10:43:16 +00:00
~~~
2019-02-05 11:45:17 +00:00
5. php artisan storage:link
~~~
2018-10-26 10:43:16 +00:00
2019-02-05 11:51:26 +00:00
It regenerates the autoloading class map, in case some package doesn't get discovered:
2019-02-05 11:45:17 +00:00
~~~
6. composer dump-autoload
~~~
2018-12-19 10:31:56 +00:00
2018-10-27 11:40:58 +00:00
> That's it, now just execute the project on your specified domain entry point pointing to public folder inside installation directory.
2018-10-26 10:43:16 +00:00
2019-01-14 12:58:23 +00:00
> **Note: you can fetch your admin panel by follow below url:**
~~~
http(s)://example.com/admin/login
~~~
~~~
email:admin@example.com
password:admin123
~~~
2018-11-23 12:05:28 +00:00
2019-01-17 07:28:20 +00:00
### 5. License <a name="#license"></a>:
Bagisto is a truly opensource E-Commerce framework which will always be free under the [MIT License ](https://github.com/bagisto/bagisto/blob/master/LICENSE ).
### 6. Miscellaneous <a name="#miscellaneous"></a>:
2019-01-17 09:54:58 +00:00
#### Contributors
2019-01-15 23:15:14 +00:00
2019-01-17 06:29:51 +00:00
This project exists thanks to all the people who contribute.
2019-01-15 23:15:14 +00:00
< a href = "https://github.com/bagisto/bagisto/graphs/contributors" > < img src = "https://opencollective.com/bagisto/contributors.svg?width=890&button=false" / > < / a >
2019-01-17 09:54:58 +00:00
#### Backers
2019-01-15 23:15:14 +00:00
Thank you to all our backers! 🙏 [[Become a backer ](https://opencollective.com/bagisto#backer )]
< a href = "https://opencollective.com/bagisto#backers" target = "_blank" > < img src = "https://opencollective.com/bagisto/backers.svg?width=890" > < / a >
2019-01-17 09:54:58 +00:00
#### Sponsors
2019-01-15 23:15:14 +00:00
Support this project by becoming a sponsor. Your logo will show up here with a link to your website. [[Become a sponsor ](https://opencollective.com/bagisto#sponsor )]
< a href = "https://opencollective.com/bagisto/sponsor/0/website" target = "_blank" > < img src = "https://opencollective.com/bagisto/sponsor/0/avatar.svg" > < / a >
< a href = "https://opencollective.com/bagisto/sponsor/1/website" target = "_blank" > < img src = "https://opencollective.com/bagisto/sponsor/1/avatar.svg" > < / a >
< a href = "https://opencollective.com/bagisto/sponsor/2/website" target = "_blank" > < img src = "https://opencollective.com/bagisto/sponsor/2/avatar.svg" > < / a >
< a href = "https://opencollective.com/bagisto/sponsor/3/website" target = "_blank" > < img src = "https://opencollective.com/bagisto/sponsor/3/avatar.svg" > < / a >
< a href = "https://opencollective.com/bagisto/sponsor/4/website" target = "_blank" > < img src = "https://opencollective.com/bagisto/sponsor/4/avatar.svg" > < / a >
< a href = "https://opencollective.com/bagisto/sponsor/5/website" target = "_blank" > < img src = "https://opencollective.com/bagisto/sponsor/5/avatar.svg" > < / a >
< a href = "https://opencollective.com/bagisto/sponsor/6/website" target = "_blank" > < img src = "https://opencollective.com/bagisto/sponsor/6/avatar.svg" > < / a >
< a href = "https://opencollective.com/bagisto/sponsor/7/website" target = "_blank" > < img src = "https://opencollective.com/bagisto/sponsor/7/avatar.svg" > < / a >
< a href = "https://opencollective.com/bagisto/sponsor/8/website" target = "_blank" > < img src = "https://opencollective.com/bagisto/sponsor/8/avatar.svg" > < / a >
2019-01-17 09:54:58 +00:00
< a href = "https://opencollective.com/bagisto/sponsor/9/website" target = "_blank" > < img src = "https://opencollective.com/bagisto/sponsor/9/avatar.svg" > < / a >