ac08a53014
* chore: update to circleci * chore: fixup * chore: fixup * chore: remove travis.yml * chore: wait for redis * chore: fix postgres * chore: try to fix db * chore: debug * chore: debug * chore: try another node * chore: try 2.5 * chore: fix node * chore: fix node * chore: fix node * chore: fix node * chore: fix node * chore: fix node * chore: fix node * chore: fix node * chore: fix node * chore: fix node * chore: cleanup * chore: cleanup * chore: remove travis stuff * chore: fix emoji * chore: fix cache * chore: update readme
36 lines
1.1 KiB
JavaScript
36 lines
1.1 KiB
JavaScript
import { promisify } from 'util'
|
|
import childProcessPromise from 'child-process-promise'
|
|
import path from 'path'
|
|
import fs from 'fs'
|
|
import { envFile } from './mastodon-config'
|
|
|
|
const exec = childProcessPromise.exec
|
|
const stat = promisify(fs.stat)
|
|
const writeFile = promisify(fs.writeFile)
|
|
const dir = __dirname
|
|
|
|
const GIT_URL = 'https://github.com/tootsuite/mastodon.git'
|
|
const GIT_TAG_OR_COMMIT = 'v3.1.3'
|
|
const GIT_BRANCH = 'master'
|
|
|
|
const mastodonDir = path.join(dir, '../mastodon')
|
|
|
|
export default async function cloneMastodon () {
|
|
try {
|
|
await stat(mastodonDir)
|
|
} catch (e) {
|
|
console.log('Cloning mastodon...')
|
|
await exec(`git clone --single-branch --branch ${GIT_BRANCH} ${GIT_URL} "${mastodonDir}"`)
|
|
await exec('git fetch origin --tags', { cwd: mastodonDir }) // may already be cloned, e.g. in CI
|
|
await exec(`git checkout ${GIT_TAG_OR_COMMIT}`, { cwd: mastodonDir })
|
|
await writeFile(path.join(dir, '../mastodon/.env'), envFile, 'utf8')
|
|
}
|
|
}
|
|
|
|
if (require.main === module) {
|
|
cloneMastodon().catch(err => {
|
|
console.error(err)
|
|
process.exit(1)
|
|
})
|
|
}
|