0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-01-09 22:22:41 +00:00

Add publicUrl as configuration item

This commit is contained in:
G.Ambatte
2022-03-25 17:05:35 +13:00
parent a11e93ef54
commit 4b6fb9f595
3 changed files with 4 additions and 2 deletions

View File

@@ -1,5 +1,5 @@
module.exports = async(name, title = '', props = {})=>{ module.exports = async(name, title = '', props = {})=>{
const HOMEBREWERY_PUBLIC_URL=(process.env.NODE_ENV == 'local' ? 'localhost:8000' : 'https://homebrewery.naturalcrit.com'); const HOMEBREWERY_PUBLIC_URL=(props.publicUrl ? props.publicUrl : 'https://homebrewery.naturalcrit.com');
return ` return `
<!DOCTYPE html> <!DOCTYPE html>

View File

@@ -3,5 +3,6 @@
"naturalcrit_url" : "local.naturalcrit.com:8010", "naturalcrit_url" : "local.naturalcrit.com:8010",
"secret" : "secret", "secret" : "secret",
"web_port" : 8000, "web_port" : 8000,
"enable_v3" : true "enable_v3" : true,
"publicUrl" : "localhost:8000"
} }

View File

@@ -264,6 +264,7 @@ const templateFn = require('./../client/template.js');
app.use((req, res)=>{ app.use((req, res)=>{
const props = { const props = {
version : require('./../package.json').version, version : require('./../package.json').version,
publicUrl : config.get('publicUrl'),
url : req.originalUrl, url : req.originalUrl,
brew : req.brew, brew : req.brew,
brews : req.brews, brews : req.brews,