Make config.json, Make webserver respect config.
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
f9238bd2c1
commit
3fa2df5bd0
|
@ -29,7 +29,7 @@ export function startWebserver(config: any) {
|
|||
});
|
||||
|
||||
if (config) {
|
||||
console.log("test");
|
||||
console.log(config.port);
|
||||
}
|
||||
|
||||
// View engine options
|
||||
|
@ -50,7 +50,7 @@ export function startWebserver(config: any) {
|
|||
else res.status(404).type("txt").send("404");
|
||||
});
|
||||
|
||||
app.listen(3430, "0.0.0.0", () => {
|
||||
app.listen(config.port, "0.0.0.0", () => {
|
||||
console.log("Webserver running on port 3430");
|
||||
});
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<!-- Page title -->
|
||||
{% assign pageTitle = "boom" %}
|
||||
{% assign pageTitle = "MangoRecipe" %}
|
||||
|
||||
<!-- Metadata tagline -->
|
||||
|
||||
|
|
|
@ -6,6 +6,6 @@ export class MangoRecipe {
|
|||
// Starts webservers at first boot
|
||||
constructor() {
|
||||
this.config = config;
|
||||
startWebserver(this);
|
||||
startWebserver(config.webapp);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -0,0 +1,17 @@
|
|||
{
|
||||
"defaultLocale": "en",
|
||||
|
||||
"webapp": {
|
||||
"cookieSecure": false,
|
||||
"port": 6000,
|
||||
"redirectURI": "http://localhost:6000/auth/callback"
|
||||
},
|
||||
|
||||
"database": {
|
||||
"db": "mangorecipe",
|
||||
"host": "",
|
||||
"password": "",
|
||||
"port": 5432,
|
||||
"user": ""
|
||||
}
|
||||
}
|
18
config.json
18
config.json
|
@ -1 +1,17 @@
|
|||
{}
|
||||
{
|
||||
"defaultLocale": "en",
|
||||
|
||||
"webapp": {
|
||||
"cookieSecure": false,
|
||||
"port": 3440,
|
||||
"redirectURI": "http://localhost:6000/auth/callback"
|
||||
},
|
||||
|
||||
"database": {
|
||||
"db": "mangorecipe",
|
||||
"host": "",
|
||||
"password": "",
|
||||
"port": 5432,
|
||||
"user": ""
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue