-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #224 from JasonHHouse/improvement/html_optimizations
Improvement/html optimizations
- Loading branch information
Showing
35 changed files
with
421 additions
and
299 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
<component name="ProjectRunConfigurationManager"> | ||
<configuration default="false" name="Gaps Dev" type="docker-deploy" factoryName="docker-compose.yml" server-name="Docker"> | ||
<deployment type="docker-compose.yml"> | ||
<settings> | ||
<option name="envFilePath" value="" /> | ||
<option name="removeVolumesOnComposeDown" value="true" /> | ||
<option name="commandLineOptions" value="--build" /> | ||
<option name="sourceFilePath" value="docker-compose-dev.yaml" /> | ||
<option name="upExitCodeFromService" value="" /> | ||
<option name="upTimeout" value="" /> | ||
</settings> | ||
</deployment> | ||
<method v="2"> | ||
<option name="NpmBeforeRunTask" enabled="true"> | ||
<package-json value="$PROJECT_DIR$/package.json" /> | ||
<command value="run" /> | ||
<scripts> | ||
<script value="eslint-cypress" /> | ||
</scripts> | ||
<node-interpreter value="project" /> | ||
<envs /> | ||
</option> | ||
<option name="NpmBeforeRunTask" enabled="true"> | ||
<package-json value="$PROJECT_DIR$/package.json" /> | ||
<command value="run" /> | ||
<scripts> | ||
<script value="uglifyjs-modules" /> | ||
</scripts> | ||
<node-interpreter value="project" /> | ||
<envs /> | ||
</option> | ||
<option name="NpmBeforeRunTask" enabled="true"> | ||
<package-json value="$PROJECT_DIR$/package.json" /> | ||
<command value="run" /> | ||
<scripts> | ||
<script value="uglifyjs-pages" /> | ||
</scripts> | ||
<node-interpreter value="project" /> | ||
<envs /> | ||
</option> | ||
<option name="NpmBeforeRunTask" enabled="true"> | ||
<package-json value="$PROJECT_DIR$/package.json" /> | ||
<command value="run" /> | ||
<scripts> | ||
<script value="eslint-cypress" /> | ||
</scripts> | ||
<node-interpreter value="project" /> | ||
<envs /> | ||
</option> | ||
<option name="NpmBeforeRunTask" enabled="true"> | ||
<package-json value="$PROJECT_DIR$/package.json" /> | ||
<command value="run" /> | ||
<scripts> | ||
<script value="eslint-gaps" /> | ||
</scripts> | ||
<node-interpreter value="project" /> | ||
<envs /> | ||
</option> | ||
<option name="Maven.BeforeRunTask" enabled="true" file="$PROJECT_DIR$/pom.xml" goal="clean install" /> | ||
</method> | ||
</configuration> | ||
</component> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,21 @@ | ||
FROM adoptopenjdk/openjdk11-openj9:jre-11.0.10_9_openj9-0.24.0 | ||
## | ||
# Copyright 2019 Jason H House | ||
# | ||
# Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: | ||
# | ||
# The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. | ||
# | ||
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. | ||
## | ||
|
||
FROM adoptopenjdk/openjdk11-openj9:jre-11.0.11_9_openj9-0.26.0 | ||
|
||
LABEL maintainer="[email protected]" | ||
LABEL name="Jason House" | ||
LABEL github="https://github.com/JasonHHouse/Gaps" | ||
|
||
EXPOSE 8484 | ||
|
||
RUN apt-get -y update | ||
|
||
RUN apt-get -y upgrade | ||
|
||
ENV JAR_FILE gaps.jar | ||
|
||
ENV ENABLE_SSL false | ||
|
@@ -24,17 +30,9 @@ RUN mkdir -p /usr/app && chmod 777 /usr/data | |
|
||
WORKDIR /usr/app | ||
|
||
COPY GapsWeb/target/GapsWeb-0.8.11.jar /usr/app/gaps.jar | ||
COPY GapsWeb/target/GapsWeb-0.8.12.jar /usr/app/gaps.jar | ||
|
||
COPY start.sh /usr/app/ | ||
|
||
CMD ./start.sh | ||
|
||
##Figure out how to do Unraid configuration | ||
#docker build -f Dockerfile -t gaps-dev . | ||
#docker run -p 8484:8484 --env ENABLE_SSL=true --env ENABLE_LOGIN=true --name gaps-dev -v /home/jason/gaps:/usr/data:Z gaps-dev | ||
#docker run -p 8484:8484 --env ENABLE_SSL=true --name gaps-dev -v /home/jason/gaps:/usr/data:Z gaps-dev | ||
#docker run -p 8484:8484 --env ENABLE_LOGIN=true --name gaps-dev -v /home/jason/gaps:/usr/data:Z gaps-dev | ||
#docker run -p 8484:8484 --name gaps-dev -v /home/jason/gaps:/usr/data:Z gaps-dev | ||
|
||
#docker buildx build --platform linux/ppc64le,linux/s390x,linux/amd64 -t housewrecker/gaps:latest -f Dockerfile . |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,19 @@ | ||
## | ||
# Copyright 2019 Jason H House | ||
# | ||
# Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: | ||
# | ||
# The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. | ||
# | ||
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. | ||
## | ||
|
||
FROM lsiobase/mono:arm64v8-LTS | ||
|
||
LABEL maintainer="[email protected]" | ||
LABEL name="Jason House" | ||
LABEL github="https://github.com/JasonHHouse/Gaps" | ||
|
||
RUN apt-get update | ||
|
||
RUN apt-get upgrade -y | ||
|
||
RUN apt-get install -y openjdk-11-jre | ||
|
||
EXPOSE 32400 | ||
|
@@ -26,15 +32,8 @@ RUN mkdir -p /usr/app && chmod 777 /usr/data | |
|
||
WORKDIR /usr/app | ||
|
||
COPY GapsWeb/target/GapsWeb-0.8.11.jar /usr/app/gaps.jar | ||
COPY GapsWeb/target/GapsWeb-0.8.12.jar /usr/app/gaps.jar | ||
|
||
COPY start.sh /usr/app/ | ||
|
||
CMD ./start.sh | ||
|
||
##Figure out how to do Unraid configuration | ||
#docker build -f Dockerfile -t gaps-dev . | ||
#docker run -p 8484:8484 --env ENABLE_SSL=true --env ENABLE_LOGIN=true --name gaps-dev -v /home/jason/gaps:/usr/data:Z gaps-dev | ||
#docker run -p 8484:8484 --env ENABLE_SSL=true --name gaps-dev -v /home/jason/gaps:/usr/data:Z gaps-dev | ||
#docker run -p 8484:8484 --env ENABLE_LOGIN=true --name gaps-dev -v /home/jason/gaps:/usr/data:Z gaps-dev | ||
#docker run -p 8484:8484 --name gaps-dev -v /home/jason/gaps:/usr/data:Z gaps-dev |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,14 @@ | ||
FROM adoptopenjdk/openjdk11-openj9:ppc64le-tumbleweed-jre-11.0.10_9_openj9-0.24.0 | ||
## | ||
# Copyright 2019 Jason H House | ||
# | ||
# Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: | ||
# | ||
# The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. | ||
# | ||
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. | ||
## | ||
|
||
FROM adoptopenjdk/openjdk11-openj9:ppc64le-tumbleweed-jre-11.0.11_9_openj9-0.26.0 | ||
|
||
LABEL maintainer="[email protected]" | ||
LABEL name="Jason House" | ||
|
@@ -20,15 +30,8 @@ RUN mkdir -p /usr/app && chmod 777 /usr/data | |
|
||
WORKDIR /usr/app | ||
|
||
COPY GapsWeb/target/GapsWeb-0.8.11.jar /usr/app/gaps.jar | ||
COPY GapsWeb/target/GapsWeb-0.8.12.jar /usr/app/gaps.jar | ||
|
||
COPY start.sh /usr/app/ | ||
|
||
CMD ./start.sh | ||
|
||
##Figure out how to do Unraid configuration | ||
#docker build -f Dockerfile -t gaps-dev . | ||
#docker run -p 8484:8484 --env ENABLE_SSL=true --env ENABLE_LOGIN=true --name gaps-dev -v /home/jason/gaps:/usr/data:Z gaps-dev | ||
#docker run -p 8484:8484 --env ENABLE_SSL=true --name gaps-dev -v /home/jason/gaps:/usr/data:Z gaps-dev | ||
#docker run -p 8484:8484 --env ENABLE_LOGIN=true --name gaps-dev -v /home/jason/gaps:/usr/data:Z gaps-dev | ||
#docker run -p 8484:8484 --name gaps-dev -v /home/jason/gaps:/usr/data:Z gaps-dev |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,14 @@ | ||
FROM bellsoft/liberica-openjdk-alpine:11 | ||
## | ||
# Copyright 2019 Jason H House | ||
# | ||
# Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: | ||
# | ||
# The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. | ||
# | ||
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. | ||
## | ||
|
||
FROM bellsoft/liberica-openjdk-alpine:11.0.11 | ||
|
||
LABEL maintainer="[email protected]" | ||
LABEL name="Jason House" | ||
|
@@ -20,15 +30,8 @@ RUN mkdir -p /usr/app && chmod 777 /usr/data | |
|
||
WORKDIR /usr/app | ||
|
||
COPY GapsWeb/target/GapsWeb-0.8.11.jar /usr/app/gaps.jar | ||
COPY GapsWeb/target/GapsWeb-0.8.12.jar /usr/app/gaps.jar | ||
|
||
COPY start.sh /usr/app/ | ||
|
||
CMD ./start.sh | ||
|
||
##Figure out how to do Unraid configuration | ||
#docker build -f Dockerfile -t gaps-dev . | ||
#docker run -p 8484:8484 --env ENABLE_SSL=true --env ENABLE_LOGIN=true --name gaps-dev -v /home/jason/gaps:/usr/data:Z gaps-dev | ||
#docker run -p 8484:8484 --env ENABLE_SSL=true --name gaps-dev -v /home/jason/gaps:/usr/data:Z gaps-dev | ||
#docker run -p 8484:8484 --env ENABLE_LOGIN=true --name gaps-dev -v /home/jason/gaps:/usr/data:Z gaps-dev | ||
#docker run -p 8484:8484 --name gaps-dev -v /home/jason/gaps:/usr/data:Z gaps-dev |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,19 @@ | ||
## | ||
# Copyright 2019 Jason H House | ||
# | ||
# Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: | ||
# | ||
# The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. | ||
# | ||
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. | ||
## | ||
|
||
FROM renefonseca/base-ubuntu-riscv32 | ||
|
||
LABEL maintainer="[email protected]" | ||
LABEL name="Jason House" | ||
LABEL github="https://github.com/JasonHHouse/Gaps" | ||
|
||
RUN apt-get update | ||
|
||
RUN apt-get install -y openjdk-11-jre | ||
|
||
EXPOSE 32400 | ||
|
@@ -24,15 +32,8 @@ RUN mkdir -p /usr/app && chmod 777 /usr/data | |
|
||
WORKDIR /usr/app | ||
|
||
COPY GapsWeb/target/GapsWeb-0.8.11.jar /usr/app/gaps.jar | ||
COPY GapsWeb/target/GapsWeb-0.8.12.jar /usr/app/gaps.jar | ||
|
||
COPY start.sh /usr/app/ | ||
|
||
CMD ./start.sh | ||
|
||
##Figure out how to do Unraid configuration | ||
#docker build -f Dockerfile -t gaps-dev . | ||
#docker run -p 8484:8484 --env ENABLE_SSL=true --env ENABLE_LOGIN=true --name gaps-dev -v /home/jason/gaps:/usr/data:Z gaps-dev | ||
#docker run -p 8484:8484 --env ENABLE_SSL=true --name gaps-dev -v /home/jason/gaps:/usr/data:Z gaps-dev | ||
#docker run -p 8484:8484 --env ENABLE_LOGIN=true --name gaps-dev -v /home/jason/gaps:/usr/data:Z gaps-dev | ||
#docker run -p 8484:8484 --name gaps-dev -v /home/jason/gaps:/usr/data:Z gaps-dev | ||
CMD ./start.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.