Compare commits
No commits in common. "3fa2df5bd06f26a8ae908fb75402e9838730e61f" and "816a51cd22386c357626e0987625780526a0cedc" have entirely different histories.
3fa2df5bd0
...
816a51cd22
|
@ -1,5 +1,5 @@
|
||||||
kind: pipeline
|
kind: pipeline
|
||||||
name: AMD64
|
name: default
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Install
|
- name: Install
|
||||||
|
|
|
@ -29,7 +29,7 @@ export function startWebserver(config: any) {
|
||||||
});
|
});
|
||||||
|
|
||||||
if (config) {
|
if (config) {
|
||||||
console.log(config.port);
|
console.log("test");
|
||||||
}
|
}
|
||||||
|
|
||||||
// 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(config.port, "0.0.0.0", () => {
|
app.listen(3430, "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 = "MangoRecipe" %}
|
{% assign pageTitle = "boom" %}
|
||||||
|
|
||||||
<!-- 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(config.webapp);
|
startWebserver(this);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,17 +0,0 @@
|
||||||
{
|
|
||||||
"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,17 +1 @@
|
||||||
{
|
{}
|
||||||
"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