File tree Expand file tree Collapse file tree 1 file changed +47
-2
lines changed Expand file tree Collapse file tree 1 file changed +47
-2
lines changed Original file line number Diff line number Diff line change 1
- # module-base
2
- Razecode Base for Magento 2
1
+ # Razecode Base for Magento 2
2
+
3
+ [ ![ Latest Stable Version] ( https://poser.pugx.org/razecode/module-base/v/stable )] ( https://packagist.org/packages/razecode/module-base )
4
+ [ ![ Total Downloads] ( https://poser.pugx.org/razecode/module-base/downloads )] ( https://packagist.org/packages/razecode/module-base )
5
+
6
+ ## How to install & upgrade Razecode_Base
7
+
8
+ ### 1. Install via composer (recommend)
9
+
10
+ We recommend you to install Razecode_Base module via composer. It is easy to install, update and maintaince.
11
+
12
+ Run the following command in Magento 2 root folder.
13
+
14
+ #### 1.1 Install
15
+
16
+ ```
17
+ composer require razecode/module-base
18
+ php bin/magento setup:upgrade
19
+ php bin/magento setup:static-content:deploy
20
+ ```
21
+
22
+ #### 1.2 Upgrade
23
+
24
+ ```
25
+ composer update razecode/module-base
26
+ php bin/magento setup:upgrade
27
+ php bin/magento setup:static-content:deploy
28
+ ```
29
+
30
+ Run compile if your store in Production mode:
31
+
32
+ ```
33
+ php bin/magento setup:di:compile
34
+ ```
35
+
36
+ ### 2. Copy and paste
37
+
38
+ If you don't want to install via composer, you can use this way.
39
+
40
+ - Download [ the latest version here] ( https://github.com/razecodetech/module-base/archive/master.zip )
41
+ - Extract ` master.zip ` file to ` app/code/Razecode/Base ` ; You should create a folder path ` app/code/Razecode/Base ` if not exist.
42
+ - Go to Magento root folder and run upgrade command line to install ` Razecode_Base ` :
43
+
44
+ ```
45
+ php bin/magento setup:upgrade
46
+ php bin/magento setup:static-content:deploy
47
+ ```
You can’t perform that action at this time.
0 commit comments