41 lines
1.0 KiB
JavaScript
41 lines
1.0 KiB
JavaScript
import fetch from 'node-fetch'
|
|
|
|
export async function waitForMastodonUiToStart () {
|
|
while (true) {
|
|
try {
|
|
let html = await ((await fetch('http://127.0.0.1:3035/packs/common.js')).text())
|
|
if (html) {
|
|
break
|
|
}
|
|
} catch (err) {
|
|
console.log('Waiting for Mastodon UI to start up...')
|
|
await new Promise(resolve => setTimeout(resolve, 5000))
|
|
}
|
|
}
|
|
console.log('Mastodon UI started up')
|
|
}
|
|
|
|
export async function waitForMastodonApiToStart () {
|
|
while (true) {
|
|
try {
|
|
let json = await ((await fetch('http://127.0.0.1:3000/api/v1/instance')).json())
|
|
if (json.uri) {
|
|
break
|
|
}
|
|
} catch (err) {
|
|
console.log('Waiting for Mastodon API to start up...')
|
|
await new Promise(resolve => setTimeout(resolve, 5000))
|
|
}
|
|
}
|
|
console.log('Mastodon API started up')
|
|
}
|
|
|
|
if (require.main === module) {
|
|
Promise.resolve()
|
|
.then(waitForMastodonApiToStart)
|
|
.then(waitForMastodonUiToStart).catch(err => {
|
|
console.error(err)
|
|
process.exit(1)
|
|
})
|
|
}
|