mirror of
https://github.com/explosion/spaCy.git
synced 2025-02-05 14:10:34 +03:00
12 lines
288 B
JavaScript
12 lines
288 B
JavaScript
|
const site = require('./site.json')
|
||
|
|
||
|
const domain = process.env.BRANCH || site.domain
|
||
|
|
||
|
module.exports = {
|
||
|
domain,
|
||
|
siteUrl: `https://${domain}`,
|
||
|
nightly: site.nightlyBranches.includes(domain),
|
||
|
legacy: site.legacy || !!+process.env.SPACY_LEGACY,
|
||
|
binderBranch: domain,
|
||
|
}
|