Skip to content

Commit 42ef9ee

Browse files
author
Ashutosh00710
committed
fix: host issue; closes Ashutosh00710#198
1 parent 57730b5 commit 42ef9ee

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ A dynamically generated activity graph to show your GitHub activities of last 31
1414

1515
### ⚠️ NOTICE: DEPLOYMENT MOVED ⚠️
1616

17-
The deployment of this project is moved from `https://activity-graph.herokuapp.com` domain to `https://github-readme-activity-graph.cyclic.app`.
17+
The deployment of this project is moved from `https://activity-graph.herokuapp.com` domain to `https://github-readme-activity-graph.cyclic.app`. In case `https://github-readme-activity-graph.cyclic.app` doesn't work try with `https://github-readme-activity-graph.vercel.app` for more details, refer [this](https://github.com/Ashutosh00710/github-readme-activity-graph/issues/197#issuecomment-1560633754)
1818

1919
Please refer to the updated link [here](#how-to-use)
2020

@@ -47,7 +47,7 @@ Just paste the following URL in your profile readme and you are good to go.
4747
**Pass your `username` in the URL**
4848

4949
```md
50-
[![Ashutosh's github activity graph](https://github-readme-activity-graph.cyclic.app/graph?username=Ashutosh00710)](https://github.com/ashutosh00710/github-readme-activity-graph)
50+
[![Ashutosh's github activity graph](https://github-readme-activity-graph.vercel.app/graph?username=Ashutosh00710)](https://github.com/ashutosh00710/github-readme-activity-graph)
5151
```
5252

5353
### [Attention ⚠](#Deploy-on-your-own-heroku-instance)
@@ -57,7 +57,7 @@ Just paste the following URL in your profile readme and you are good to go.
5757
_`username=ashutosh00710&theme=theme_name`_
5858

5959
```md
60-
[![Ashutosh's github activity graph](https://github-readme-activity-graph.cyclic.app/graph?username=Ashutosh00710&theme=dracula)](https://github.com/ashutosh00710/github-readme-activity-graph)
60+
[![Ashutosh's github activity graph](https://github-readme-activity-graph.vercel.app/graph?username=Ashutosh00710&theme=dracula)](https://github.com/ashutosh00710/github-readme-activity-graph)
6161
```
6262

6363
[Manual Customization](#customization) is also available
@@ -109,13 +109,13 @@ Example:
109109
**`custom_title=This%20is%20a%20title`**
110110

111111
```md
112-
[![Ashutosh's github activity graph](https://github-readme-activity-graph.cyclic.app/graph?username=ashutosh00710&custom_title=This%20is%20a%20title&hide_border=true)](https://github.com/ashutosh00710/github-readme-activity-graph)
112+
[![Ashutosh's github activity graph](https://github-readme-activity-graph.vercel.app/graph?username=ashutosh00710&custom_title=This%20is%20a%20title&hide_border=true)](https://github.com/ashutosh00710/github-readme-activity-graph)
113113
```
114114

115115
**Example:**
116116

117117
```md
118-
[![Ashutosh's github activity graph](https://github-readme-activity-graph.cyclic.app/graph?username=ashutosh00710&bg_color=fffff0&color=708090&line=24292e&point=24292e&area=true&hide_border=true)](https://github.com/ashutosh00710/github-readme-activity-graph)
118+
[![Ashutosh's github activity graph](https://github-readme-activity-graph.vercel.app/graph?username=ashutosh00710&bg_color=fffff0&color=708090&line=24292e&point=24292e&area=true&hide_border=true)](https://github.com/ashutosh00710/github-readme-activity-graph)
119119
```
120120

121121
## Deploy on your own Replit instance

script.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ const removePlaceholder = () => {
4747
// Generate chart link with user data
4848

4949
const generateLink = () => {
50-
let link = `[![Ashutosh's github activity graph](https://github-readme-activity-graph.cyclic.app/graph?username=${
50+
let link = `[![Ashutosh's github activity graph](https://github-readme-activity-graph.vercel.app/graph?username=${
5151
valueToCopy.username
5252
}&bg_color=${valueToCopy.bgColor.slice(1)}&color=${valueToCopy.color.slice(
5353
1
@@ -115,7 +115,7 @@ const getGraph = (username) => {
115115
};
116116

117117
axios({
118-
url: `https://github-readme-activity-graph.cyclic.app/data?username=${username}`,
118+
url: `https://github-readme-activity-graph.vercel.app/data?username=${username}`,
119119
method: 'GET'
120120
})
121121
.then((contributionData) => {

0 commit comments

Comments
 (0)