Compare commits

...

7 Commits

Author SHA1 Message Date
Jonatan Nilsson 8f3faed11f package: Release new version
continuous-integration/appveyor/branch AppVeyor build succeeded Details
2022-04-01 10:05:49 +00:00
Jonatan Nilsson 95e94b38cc server: Change log level from debug to info on normal requests
continuous-integration/appveyor/branch AppVeyor build succeeded Details
2022-04-01 10:04:59 +00:00
Jonatan Nilsson 562ade9763 Trigger new version
continuous-integration/appveyor/branch AppVeyor build succeeded Details
2022-03-30 22:05:28 +00:00
Jonatan Nilsson 5b6b1b0a58 appveyor: Add auto deploy to production
continuous-integration/appveyor/branch AppVeyor build succeeded Details
2022-03-30 09:08:03 +00:00
Jonatan Nilsson fa38c2928b server: Fix accidental crashing bug xD
continuous-integration/appveyor/branch AppVeyor build succeeded Details
2022-03-29 10:07:06 +00:00
Jonatan Nilsson 4560d20b04 server: Log incoming requests on finish
continuous-integration/appveyor/branch AppVeyor build succeeded Details
2022-03-29 10:03:35 +00:00
Jonatan Nilsson fbf2f5958c server: Don't overwrite host, use service-core defaults
continuous-integration/appveyor/branch AppVeyor build succeeded Details
package: Increment version
2022-03-12 22:45:05 +00:00
3 changed files with 34 additions and 2 deletions

View File

@ -7,6 +7,35 @@ export function run(http, orgPort, ctx) {
let packageInfo = JSON.parse(readFileSync(packagePath))
const server = http.createServer(function (req, res) {
const d1 = new Date().getTime()
let finishedRequest = false
var done = function () {
if (finishedRequest) return
finishedRequest = true
var requestTime = new Date().getTime() - d1
let level = 'info'
if (res.statusCode >= 400) {
level = 'warn'
}
if (res.statusCode >= 500) {
level = 'error'
}
let status = ''
if (res.statusCode >= 400) {
status = res.statusCode + ' '
}
ctx.log[level]({
duration: requestTime,
status: res.statusCode,
}, `<-- ${status}${req.method} ${req.url}`)
}
res.addListener('finish', done);
res.addListener('close', done);
res.writeHead(200);
res.write(JSON.stringify(packageInfo, null, ' '))
res.end()
@ -14,7 +43,7 @@ export function run(http, orgPort, ctx) {
let port = orgPort || 4000
return server.listenAsync(port, '0.0.0.0')
return server.listenAsync(port)
.then(function() {
ctx.log.event.info(`Server is listening on ${port} serving package ${packagePath}`)
ctx.log.info(`Server is listening on ${port} serving package ${packagePath}`)

View File

@ -60,6 +60,9 @@ on_success:
-H "Authorization: token $deploytoken" \
-F "attachment=@${CURR_VER}_build-sc.7z" \
https://git.nfp.is/api/v1/repos/$APPVEYOR_REPO_NAME/releases/$RELEASE_ID/assets
echo "Deplying to production"
curl -X POST http://192.168.93.51:8881/update/helloworld
fi
# on build failure

View File

@ -1,6 +1,6 @@
{
"name": "sc-helloworld",
"version": "2.0.1",
"version": "2.0.6",
"description": "Hello World app for service core",
"main": "index.js",
"scripts": {