Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
drawing-app
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
sweng-group-15
drawing-app
Commits
d8a9f29e
Commit
d8a9f29e
authored
5 years ago
by
Moritz Langenstein
Browse files
Options
Downloads
Patches
Plain Diff
(ml5717) Updated based on merge request comments
parent
702ee2e0
No related branches found
No related tags found
Loading
Pipeline
#100937
failed
5 years ago
Stage: fetch
Stage: deps
Stage: check
Stage: build
Stage: test
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.gitlab-ci.yml
+2
-1
2 additions, 1 deletion
.gitlab-ci.yml
src/server.js
+18
-15
18 additions, 15 deletions
src/server.js
with
20 additions
and
16 deletions
.gitlab-ci.yml
+
2
−
1
View file @
d8a9f29e
...
@@ -2,6 +2,7 @@ default:
...
@@ -2,6 +2,7 @@ default:
image
:
node:12
image
:
node:12
stages
:
stages
:
-
fetch
-
deps
-
deps
-
check
-
check
-
build
-
build
...
@@ -9,7 +10,7 @@ stages:
...
@@ -9,7 +10,7 @@ stages:
-
deploy
-
deploy
submodule_fetch
:
submodule_fetch
:
stage
:
deps
stage
:
fetch
script
:
script
:
-
chmod 600 .drawing-app-deploy.rsa
-
chmod 600 .drawing-app-deploy.rsa
-
git submodule sync --recursive
-
git submodule sync --recursive
...
...
This diff is collapsed.
Click to expand it.
src/server.js
+
18
−
15
View file @
d8a9f29e
import
express
from
"
express
"
import
express
from
"
express
"
import
http
from
"
http
"
import
http
from
"
http
"
import
process
from
"
process
"
import
signalbuddy
from
"
signalbuddy
"
import
signalbuddy
from
"
signalbuddy
"
const
host
=
"
127.0.0.1
"
const
port
=
process
.
env
.
PORT
||
3000
const
port
=
process
.
env
.
PORT
||
3000
const
app
=
express
()
const
app
=
express
()
...
@@ -17,21 +19,22 @@ const config = {
...
@@ -17,21 +19,22 @@ const config = {
signalbuddy
(
server
,
config
)
signalbuddy
(
server
,
config
)
app
.
use
(
app
.
use
((
request
,
response
,
next
)
=>
{
"
/
"
,
response
.
on
(
"
finish
"
,
()
=>
{
express
.
static
(
"
public
"
,
{
console
.
log
(
setHeaders
:
(
_response
,
file_path
)
=>
{
"
[%s] [%s]: %s %s
"
,
// Log access
`
${
new
Date
()}
`
.
split
(
"
"
,
5
).
join
(
"
"
),
console
.
log
(
Date
.
now
(),
file_path
,
"
accessed
"
)
response
.
statusCode
,
},
request
.
method
.
padStart
(
7
),
}),
request
.
originalUrl
,
)
)
})
server
.
listen
(
port
,
()
=>
{
next
()
const
host
=
server
.
address
().
address
})
const
port
=
server
.
address
().
port
console
.
log
(
"
Started server on %s, port: %s
"
,
host
,
port
)
app
.
use
(
"
/
"
,
express
.
static
(
"
public
"
)
)
console
.
log
(
"
Static file server: %s
\n
"
,
`http://
${
host
}
:
${
port
}
/`
)
server
.
listen
(
port
,
host
,
()
=>
{
console
.
log
(
`Listening on http://
${
host
}
:
${
port
}
`
)
process
.
on
(
"
SIGINT
"
,
process
.
exit
)
})
})
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment