forked from cybrespace/pinafore
ability to set up dev mastodon server with data
This commit is contained in:
parent
5196109e0c
commit
eadcdb0f3e
|
@ -1,10 +1,13 @@
|
||||||
const pify = require('pify')
|
const pify = require('pify')
|
||||||
const exec = require('child-process-promise').exec;
|
const exec = require('child-process-promise').exec
|
||||||
|
const spawn = require('child-process-promise').spawn
|
||||||
const dir = __dirname
|
const dir = __dirname
|
||||||
const path = require('path')
|
const path = require('path')
|
||||||
const fs = require('fs')
|
const fs = require('fs')
|
||||||
const exists = pify(fs.exists.bind(fs))
|
const stat = pify(fs.stat.bind(fs))
|
||||||
const writeFile = pify(fs.writeFile.bind(fs))
|
const writeFile = pify(fs.writeFile.bind(fs))
|
||||||
|
const mkdirp = pify(require('mkdirp'))
|
||||||
|
const fetch = require('node-fetch')
|
||||||
|
|
||||||
const envFile = `
|
const envFile = `
|
||||||
PAPERCLIP_SECRET=foo
|
PAPERCLIP_SECRET=foo
|
||||||
|
@ -12,21 +15,87 @@ SECRET_KEY_BASE=bar
|
||||||
OTP_SECRET=foobarfoobarfoobarfoobarfoobarfoobarfoobarfoobarfoobarfoobarfoobarfoobarfoobar
|
OTP_SECRET=foobarfoobarfoobarfoobarfoobarfoobarfoobarfoobarfoobarfoobarfoobarfoobarfoobar
|
||||||
`
|
`
|
||||||
|
|
||||||
async function main() {
|
const mastodonDir = path.join(dir, '../mastodon')
|
||||||
let mastodonDir = path.join(dir, '../mastodon')
|
|
||||||
if (!(await exists(mastodonDir))) {
|
let childProc
|
||||||
|
|
||||||
|
async function cloneMastodon() {
|
||||||
|
try {
|
||||||
|
await stat(mastodonDir)
|
||||||
|
} catch (e) {
|
||||||
|
console.log('Cloning mastodon...')
|
||||||
await exec(`git clone https://github.com/tootsuite/mastodon "${mastodonDir}"`)
|
await exec(`git clone https://github.com/tootsuite/mastodon "${mastodonDir}"`)
|
||||||
await exec(`git checkout v2.2.0`, {cwd: mastodonDir})
|
await exec(`git checkout v2.2.0`, {cwd: mastodonDir})
|
||||||
await writeFile(path.join(dir, '../mastodon/.env'), envFile, 'utf8')
|
await writeFile(path.join(dir, '../mastodon/.env'), envFile, 'utf8')
|
||||||
}
|
}
|
||||||
|
|
||||||
await exec(`gem install bundler`, {cwd: mastodonDir})
|
|
||||||
await exec(`gem install foreman`, {cwd: mastodonDir})
|
|
||||||
await exec(`bundle install`, {cwd: mastodonDir})
|
|
||||||
await exec(`yarn --pure-lockfile`, {cwd: mastodonDir})
|
|
||||||
await exec(`foreman start`, {cwd: mastodonDir})
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
async function restoreMastodonData() {
|
||||||
|
console.log('Restoring mastodon data...')
|
||||||
|
try {
|
||||||
|
await exec('dropdb mastodon_development', {cwd: mastodonDir})
|
||||||
|
} catch (e) { /* ignore */ }
|
||||||
|
await exec('createdb mastodon_development', {cwd: mastodonDir})
|
||||||
|
|
||||||
|
let dumpFile = path.join(dir, '../fixtures/dump.sql')
|
||||||
|
await exec(`pg_restore -Fc -d mastodon_development "${dumpFile}"`, {cwd: mastodonDir})
|
||||||
|
|
||||||
|
let tgzFile = path.join(dir, '../fixtures/system.tgz')
|
||||||
|
let systemDir = path.join(mastodonDir, 'public/system')
|
||||||
|
await mkdirp(systemDir)
|
||||||
|
await exec(`tar -xzf "${tgzFile}"`, {cwd: systemDir})
|
||||||
|
}
|
||||||
|
|
||||||
|
async function runMastodon() {
|
||||||
|
console.log('Running mastodon...')
|
||||||
|
let cmds = [
|
||||||
|
'gem install bundler',
|
||||||
|
'gem install foreman',
|
||||||
|
'bundle install',
|
||||||
|
'yarn --pure-lockfile'
|
||||||
|
]
|
||||||
|
|
||||||
|
for (let cmd of cmds) {
|
||||||
|
console.log(cmd)
|
||||||
|
await exec(cmd, {cwd: mastodonDir})
|
||||||
|
}
|
||||||
|
const promise = spawn('foreman', ['start'], {cwd: mastodonDir})
|
||||||
|
childProc = promise.childProcess
|
||||||
|
childProc.stdout.on('data', function (data) {
|
||||||
|
console.log(data.toString('utf8').replace(/\n$/, ''))
|
||||||
|
})
|
||||||
|
childProc.stderr.on('data', function (data) {
|
||||||
|
console.error(data.toString('utf8').replace(/\n$/, ''))
|
||||||
|
})
|
||||||
|
|
||||||
|
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 to start up...')
|
||||||
|
await new Promise(resolve => setTimeout(resolve, 1000))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
console.log('Mastodon started up')
|
||||||
|
}
|
||||||
|
|
||||||
|
async function main() {
|
||||||
|
await cloneMastodon()
|
||||||
|
await restoreMastodonData()
|
||||||
|
await runMastodon()
|
||||||
|
}
|
||||||
|
|
||||||
|
process.on('SIGINT', function () {
|
||||||
|
if (childProc) {
|
||||||
|
console.log('killing child process')
|
||||||
|
childProc.kill()
|
||||||
|
}
|
||||||
|
process.exit(0)
|
||||||
|
})
|
||||||
|
|
||||||
main().catch(err => {
|
main().catch(err => {
|
||||||
console.error(err)
|
console.error(err)
|
||||||
process.exit(1)
|
process.exit(1)
|
||||||
|
|
Binary file not shown.
Binary file not shown.
|
@ -38,6 +38,7 @@
|
||||||
"intersection-observer": "^0.5.0",
|
"intersection-observer": "^0.5.0",
|
||||||
"lodash": "^4.17.4",
|
"lodash": "^4.17.4",
|
||||||
"lodash-webpack-plugin": "^0.11.4",
|
"lodash-webpack-plugin": "^0.11.4",
|
||||||
|
"mkdirp": "^0.5.1",
|
||||||
"node-fetch": "^1.7.3",
|
"node-fetch": "^1.7.3",
|
||||||
"node-sass": "^4.7.2",
|
"node-sass": "^4.7.2",
|
||||||
"npm-run-all": "^4.1.2",
|
"npm-run-all": "^4.1.2",
|
||||||
|
|
Loading…
Reference in New Issue