diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 2b5be73..ecb7f29 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -8,7 +8,7 @@ Want to contribute by editing the text content on the site? This is easy, as all ## Code Overview -This project is a Vuepress-based static documentation website. This includes both the backend and frontend of the website at [beta.lbry.tech](https://beta.lbry.tech). All of this packaged and build with [Yarn](https://yarnpkg.com). +This project is a Vuepress-based static documentation website. This includes both the backend and frontend of the website at [lbry.tech](https://lbry.tech). All of this packaged and build with [Yarn](https://yarnpkg.com). ### Backend diff --git a/README.md b/README.md index 636964d..b45110a 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ This project is not designed to be installed directly. Continue reading below to ## Usage -Visit [beta.LBRY.tech](https://beta.lbry.tech) for hosted version for this repository. +Visit [LBRY.tech](https://lbry.tech) for hosted version for this repository. ## Running from Source diff --git a/content/.vuepress/components/GithubFeed.vue b/content/.vuepress/components/GithubFeed.vue index 3527ffb..dcaee09 100644 --- a/content/.vuepress/components/GithubFeed.vue +++ b/content/.vuepress/components/GithubFeed.vue @@ -94,7 +94,7 @@ export default { var component = this; - component.$http.get('https://beta.lbry.tech/github-feed').then(function(response) { + component.$http.get('https://lbry.tech/github-feed').then(function(response) { component.events = response.body; }); diff --git a/content/.vuepress/components/Step3.vue b/content/.vuepress/components/Step3.vue index 14504d6..4ac1720 100644 --- a/content/.vuepress/components/Step3.vue +++ b/content/.vuepress/components/Step3.vue @@ -102,7 +102,7 @@ export default { component.jsonData = ''; component.isLoading = true; component.exampleCode = '# Example code using the daemon\ncurl \'http://localhost:5279\' --data \'{"method":"wallet_send","params":{"claim_id":"' + this.address + '","amount":' + this.amount + '}}\''; - this.$http.get('https://beta.lbry.tech/forward?method=wallet_send&claim_id=' + this.address + '&amount=' + this.amount).then(function(response) { + this.$http.get('https://lbry.tech/forward?method=wallet_send&claim_id=' + this.address + '&amount=' + this.amount).then(function(response) { component.isLoading = false; component.jsonData = JSON.stringify(response.body, null, ' '); });