You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+8-8Lines changed: 8 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -50,12 +50,12 @@ To view a live example, **[click here](https://ashutosh1919.github.io/)**
50
50
- While installing `nodejs` and `npm`, try to install versions which are equal or greater than the versions mentioned in badges above.
51
51
- In case you want to help developing it or simply saving it, you can fork the repository just by clicking the button on the top-right corner of this page.
52
52
- After the successful installation of `nodejs` and `npm`, clone the repository into your local system using below command:
- This will clone the whole repository in your system.
57
57
- To download required dependencies to your system, navigate to the directory where the cloned repository resides and execute following command:
58
-
-```python
58
+
- ```node
59
59
npm install
60
60
```
61
61
- Now, the project is ready to use.
@@ -73,7 +73,7 @@ Open this file, which is in the main cloned directory, choose any "name" and cha
73
73
74
74
You will find `src/portfolio.js` file which contains the complete information about the user. The file looks something like below:
75
75
76
-
```python
76
+
```javascript
77
77
// Home Page
78
78
const greeting = {
79
79
...
@@ -91,10 +91,10 @@ You can change the personal information, experience, education, social media, ce
91
91
92
92
### Github Information
93
93
94
-
You will find `git_data_fetcher.js` file in the main directory of the repository. This file is used to fetch the data (Pull requests, Issues, Organizations, Pinned projects etc.) from your github.
94
+
You will find `git_data_fetcher.mjs` file in the main directory of the repository. This file is used to fetch the data (Pull requests, Issues, Organizations, Pinned projects etc.) from your github.
95
95
If you open the file, you will see below component at the top of the file. You need to change only that component.
96
96
97
-
```python
97
+
```javascript
98
98
const openSource = {
99
99
githubConvertedToken: "Your Github Token Here.",
100
100
githubUserName: "Your Github Username Here.",
@@ -106,8 +106,8 @@ Now, you need to run following command.
106
106
107
107
**Warning:** Treat your tokens like passwords and keep them secret. When working with the API, use tokens as environment variables instead of hardcoding them into your programs.
108
108
109
-
```python
110
-
node git_data_fetcher.js
109
+
```node
110
+
node git_data_fetcher.mjs
111
111
```
112
112
113
113
This will fetch all the data from your github and it will automatically replace my data with yours.
@@ -122,7 +122,7 @@ Therefore, this part of portfolio is not customizable. But don't worry we have a
122
122
- If you don't want Splash screen or you don't know how to design logo, then this option is for you.
123
123
124
124
- You can open `src/portfolio.js` file and at the top of this file you will see `settings` component as below:
0 commit comments