2018-03-06 04:51:42 +00:00
|
|
|
import fetch from 'node-fetch'
|
2018-02-18 20:03:37 +00:00
|
|
|
|
2018-03-06 04:51:42 +00:00
|
|
|
export async function waitForMastodonToStart () {
|
2018-02-18 20:03:37 +00:00
|
|
|
while (true) {
|
|
|
|
try {
|
|
|
|
let json = await ((await fetch('http://127.0.0.1:3000/api/v1/instance')).json())
|
2018-02-19 01:28:08 +00:00
|
|
|
let html = await ((await fetch('http://127.0.0.1:3035/packs/common.js')).text())
|
|
|
|
if (json.uri && html) {
|
2018-02-18 20:03:37 +00:00
|
|
|
break
|
|
|
|
}
|
|
|
|
} catch (err) {
|
|
|
|
console.log('Waiting for Mastodon to start up...')
|
|
|
|
await new Promise(resolve => setTimeout(resolve, 1000))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
console.log('Mastodon started up')
|
|
|
|
}
|
|
|
|
|
|
|
|
if (require.main === module) {
|
|
|
|
waitForMastodonToStart().catch(err => {
|
|
|
|
console.error(err)
|
|
|
|
process.exit(1)
|
|
|
|
})
|
2018-02-18 23:30:42 +00:00
|
|
|
}
|