Compare commits
2 Commits
816a51cd22
...
3fa2df5bd0
Author | SHA1 | Date |
---|---|---|
nightly | 3fa2df5bd0 | |
nightly | f9238bd2c1 |
|
@ -1,5 +1,5 @@
|
||||||
kind: pipeline
|
kind: pipeline
|
||||||
name: default
|
name: AMD64
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Install
|
- name: Install
|
||||||
|
|
|
@ -29,7 +29,7 @@ export function startWebserver(config: any) {
|
||||||
});
|
});
|
||||||
|
|
||||||
if (config) {
|
if (config) {
|
||||||
console.log("test");
|
console.log(config.port);
|
||||||
}
|
}
|
||||||
|
|
||||||
// View engine options
|
// View engine options
|
||||||
|
@ -50,7 +50,7 @@ export function startWebserver(config: any) {
|
||||||
else res.status(404).type("txt").send("404");
|
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");
|
console.log("Webserver running on port 3430");
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<!-- Page title -->
|
<!-- Page title -->
|
||||||
{% assign pageTitle = "boom" %}
|
{% assign pageTitle = "MangoRecipe" %}
|
||||||
|
|
||||||
<!-- Metadata tagline -->
|
<!-- Metadata tagline -->
|
||||||
|
|
||||||
|
|
|
@ -6,6 +6,6 @@ export class MangoRecipe {
|
||||||
// Starts webservers at first boot
|
// Starts webservers at first boot
|
||||||
constructor() {
|
constructor() {
|
||||||
this.config = config;
|
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