File tree Expand file tree Collapse file tree 5 files changed +8002
-19
lines changed Expand file tree Collapse file tree 5 files changed +8002
-19
lines changed Original file line number Diff line number Diff line change @@ -26,22 +26,13 @@ devDependencies:
2626** 1.** Clone project
2727``` bash
2828# with SSH
29- git clone git@github.com:YUzhva/create-react-redux-app.git
29+ git clone git@github.com:YUzhva/create-react-redux-app.git NEW_PROJECT_NAME
3030
3131# with HTTPS
32- git clone https://github.com/YUzhva/create-react-redux-app.git
32+ git clone https://github.com/YUzhva/create-react-redux-app.git NEW_PROJECT_NAME
3333```
3434
35- ** 2.** Rename project
36- ``` bash
37- # command for Mac/Linux
38- mv create-react-redux-app NEW_PROJECT_NAME
39-
40- # command for Windows
41- rename create-react-redux-app NEW_PROJECT_NAME
42- ```
43-
44- ** 3.** Go inside project folder ` cd NEW_PROJECT_NAME ` and edit project name inside ` package.json `
35+ ** 2.** Go inside project folder ` cd NEW_PROJECT_NAME ` and edit project name inside ` package.json `
4536``` javascript
4637// change
4738{
@@ -54,7 +45,7 @@ rename create-react-redux-app NEW_PROJECT_NAME
5445}
5546```
5647
57- ** 4 .** Delete .git folder
48+ ** 3 .** Delete .git folder
5849``` bash
5950# command for Mac/Linux
6051rm -rf .git
@@ -63,7 +54,7 @@ rm -rf .git
6354rmdir .git
6455```
6556
66- ** 5 .** Initialize new git
57+ ** 4 .** Initialize new git
6758``` bash
6859git init
6960git add .
@@ -77,7 +68,7 @@ git commit -m "[initial commit] NEW_PROJECT_NAME"
7768```
7869- src
7970 - components // reusable react components without redux
80- * ContainerName
71+ * ComponentName
8172 tests
8273 index.js // entry point for component
8374
You can’t perform that action at this time.
0 commit comments