Skip to content

Commit

Permalink
Move list of backends into separate file
Browse files Browse the repository at this point in the history
  • Loading branch information
softins committed Aug 27, 2024
1 parent 9705b83 commit d78ea52
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 22 deletions.
23 changes: 1 addition & 22 deletions src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -179,28 +179,7 @@
<script>
// import servers from './sample.js'
const backends = [
{
city: 'London (Linode)',
desc: 'Linode in London',
url: "https://explorer.jamulus.io/servers.php",
warn: null
//warn: 'NOTE: the London Linode server is currently having issues connecting to some directories.'
},
{
city: 'London (AWS)',
desc: 'AWS in London',
url: "https://explorer.jamulus.io/servers-lon2.php",
warn: null
},
{
city: 'San Francisco',
desc: 'DigitalOcean in San Francisco',
url: "https://explorer.jamulus.io/servers-sf.php",
warn: null
}
];
import backends from './backends.js';
import options from './servers.js';
import ModalBox from './components/ModalBox.vue'
import { mixin as focusMixin } from './focus.js'
Expand Down
23 changes: 23 additions & 0 deletions src/backends.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
const backends = [
{
city: 'London (Linode)',
desc: 'Linode in London',
url: "https://explorer.jamulus.io/servers.php",
warn: null
//warn: 'NOTE: the London Linode server is currently having issues connecting to some directories.'
},
{
city: 'London (AWS)',
desc: 'AWS in London',
url: "https://explorer.jamulus.io/servers-lon2.php",
warn: null
},
{
city: 'San Francisco',
desc: 'DigitalOcean in San Francisco',
url: "https://explorer.jamulus.io/servers-sf.php",
warn: null
}
];

export default backends

0 comments on commit d78ea52

Please sign in to comment.