Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
Orchive3-Frontend
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
orchive3
Orchive3-Frontend
Commits
311a372f
Commit
311a372f
authored
May 13, 2023
by
Korbinian
Browse files
Options
Downloads
Patches
Plain Diff
Adjusted compose files for on-prem use
parent
dc4bc458
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
4
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
Dockerfile
+7
-5
7 additions, 5 deletions
Dockerfile
package-lock.json
+15988
-9
15988 additions, 9 deletions
package-lock.json
src/components/RandomOrcaPlayer.vue
+1
-1
1 addition, 1 deletion
src/components/RandomOrcaPlayer.vue
vue.config.js
+2
-0
2 additions, 0 deletions
vue.config.js
with
15998 additions
and
15 deletions
Dockerfile
+
7
−
5
View file @
311a372f
...
@@ -2,10 +2,12 @@ FROM node:15 AS builder
...
@@ -2,10 +2,12 @@ FROM node:15 AS builder
WORKDIR
/app
WORKDIR
/app
COPY
. .
COPY
. .
RUN
npm
install
-ci
#
RUN npm install -ci
RUN
npm run build
#
RUN npm run build
FROM
nginx:1.20.0
# FROM nginx:1.20.0
#
# COPY .docker/default.conf /etc/nginx/conf.d/
# COPY --from=builder /app/dist /usr/share/nginx/html
COPY
.docker/default.conf /etc/nginx/conf.d/
CMD
["npm", "run", "serve"]
COPY
--from=builder /app/dist /usr/share/nginx/html
\ No newline at end of file
\ No newline at end of file
This diff is collapsed.
Click to expand it.
package-lock.json
+
15988
−
9
View file @
311a372f
This diff is collapsed.
Click to expand it.
src/components/RandomOrcaPlayer.vue
+
1
−
1
View file @
311a372f
<
template
>
<
template
>
<div
class=
"randomPlayerContainer"
>
<div
class=
"randomPlayerContainer"
>
<div
class=
"titlePlayer"
>
Orca Player
</div>
<div
class=
"titlePlayer"
>
Orca Player
!
</div>
<div
class=
"randomPlayerItem"
>
<div
class=
"randomPlayerItem"
>
<div
class=
"playOrcaRandomPlayer"
@
click=
"playRandomPlayer"
>
<div
class=
"playOrcaRandomPlayer"
@
click=
"playRandomPlayer"
>
<img
class=
"playIconRandomPlayer"
v-if=
"!isPlayerPlaying"
src=
"../assets/play-circle-solid.svg"
alt=
""
>
<img
class=
"playIconRandomPlayer"
v-if=
"!isPlayerPlaying"
src=
"../assets/play-circle-solid.svg"
alt=
""
>
...
...
This diff is collapsed.
Click to expand it.
vue.config.js
+
2
−
0
View file @
311a372f
...
@@ -4,6 +4,8 @@
...
@@ -4,6 +4,8 @@
module
.
exports
=
{
module
.
exports
=
{
devServer
:
{
devServer
:
{
// proxy: 'http://augustiner.informatik.fh-nuernberg.de:8080'
// proxy: 'http://augustiner.informatik.fh-nuernberg.de:8080'
port
:
80
,
disableHostCheck
:
true
,
proxy
:
{
proxy
:
{
"
^/api
"
:
{
"
^/api
"
:
{
target
:
"
http://localhost:8000
"
,
target
:
"
http://localhost:8000
"
,
...
...
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