Remove beta prefix from urls

This commit is contained in:
Kristian Polso 2018-06-05 12:27:11 +03:00
parent 33ebaed2bf
commit bc930fe228
4 changed files with 4 additions and 4 deletions

View file

@ -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

View file

@ -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

View file

@ -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;
});

View file

@ -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, ' ');
});