mirror of
https://github.com/explosion/spaCy.git
synced 2025-01-27 09:44:36 +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,
|
|
}
|