Simplify navigation and modernize profile and sign-in
This commit is contained in:
@@ -8,7 +8,7 @@ const assert = require('node:assert/strict')
|
||||
const base = process.env.REVIEW_BASE || 'https://beta.grizzlyflix.co.nz'
|
||||
const liveBase = process.env.REVIEW_LIVE_BASE || 'https://beta.grizzlyflix.co.nz'
|
||||
const prefix = process.env.REVIEW_PREFIX || 'before'
|
||||
const session = JSON.parse(fs.readFileSync(reviewDir + '/session.json', 'utf8'))
|
||||
const session = JSON.parse(process.env.REVIEW_SESSION || fs.readFileSync(reviewDir + '/session.json', 'utf8'))
|
||||
|
||||
;(async () => {
|
||||
const browser = await chromium.launch({ headless: true, args: ['--no-sandbox'] })
|
||||
|
||||
Reference in New Issue
Block a user