updated readme, removed migration guide section from it and made the separate migration guide.md file for version migration of bagisto

This commit is contained in:
prashant-webkul 2018-12-19 16:36:16 +05:30
parent 7b52bd74ba
commit 7b9277197b
2 changed files with 39 additions and 29 deletions

View File

@ -106,35 +106,6 @@ composer dump-autoload
> That's it, now just execute the project on your specified domain entry point pointing to public folder inside installation directory.
### 5. Migration from v0.1.0 to v0.1.1 (Only for git users, everyone have to download fresh copy or follow from step 1 and use the same database configuration)
**Run commands below:**
> **php artisan migrate**
> **php artisan vendor:publish**
### 6. Migration from v0.1.1 to v0.1.2
**Run commands below:**
> **php artisan migrate**
> **php artisan vendor:publish**
### 7. Migration from v0.1.2 to v0.1.3
**Run commands below:**
> **composer install**
> **php artisan migrate**
> **php artisan vendor:publish**
### 7. License
Bagisto is a truly opensource E-Commerce framework which will always be free under the [MIT License](https://opensource.org/licenses/MIT).

39
migration guide.md Normal file
View File

@ -0,0 +1,39 @@
# Migration Guide:
#### Note: Only for git users or updating by zip file from the release section from repository
* Better way to update Bagisto is to overwrite the code by manually downloading the zip file and extract it on the main project directory.
or
* Delete or rename the old installation directory and install the new one using the installation process in the readme of Bagisto.
* Follow these commands below if you're doing overwrite else use your old .env file before deleting/backing up old bagisto release and installing the new release of Bagisto.
## 1. Migration from v0.1.0 to v0.1.1
**Run commands below:**
> **php artisan migrate**
> **php artisan vendor:publish**
## 2. Migration from v0.1.1 to v0.1.2
**Run commands below:**
> **php artisan migrate**
> **php artisan vendor:publish**
## 3. Migration from v0.1.2 to v0.1.3
**Run commands below:**
> **composer install**
> **php artisan migrate**
> **php artisan vendor:publish**