-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* version 0.7.9 Signed-off-by: Andres LeonRangel <[email protected]> * top left menu buttons inside panel Signed-off-by: Andres LeonRangel <[email protected]> * attendance UI java functionality Signed-off-by: Andres LeonRangel <[email protected]> * upgrades to Primefaces14 RC2 * Visual UI HTML working fine for committed pages * adds PF extensions Jakarta RC2 * cleans up gradle function to list .xhtmls * cleans up old PF8 refernces in xhtmls Signed-off-by: Andres LeonRangel <[email protected]> * gradle Java upgrade JakartaEE 1. tests pass and get executed 2. making beans reachable 3. enables gradle dependency for JakartaEE Signed-off-by: Andres LeonRangel <[email protected]> * UI working 04-lecturerHome 1. PrimeFaces Extension enabled 2. streamlined HTML Signed-off-by: Andres LeonRangel <[email protected]> * UI make it work with no errors 1. prep set up to make UI UX work rendering from server 2. final goal is to have a docker-compose stack Signed-off-by: Andres LeonRangel <[email protected]> * gitpod development v1 1. make UIs with static content run 2. define runme.sh with run_stack command 3. added test_stack function * version 0.8.0 JDK21 1. upgrade to JDK 21 Signed-off-by: Andres LeonRangel <[email protected]> * unified functions local test 1. introduces a function to run smoke tests. Simple run the app, make it work 2. the full run_stack function performs a comprehensive system start Signed-off-by: Andres LeonRangel <[email protected]> * Expanded smoke test function 1. added debug statements 2. gets project info via gradle getProjectInfo() Signed-off-by: Andres LeonRangel <[email protected]> * enable IntelliJ community 2024 Signed-off-by: Andres LeonRangel <[email protected]> * added menu on the left corresponding screens Signed-off-by: Andres LeonRangel <[email protected]> * UX optimize build shell script - remove unnecesary commands - improves gradle lifecycle Signed-off-by: Andres LeonRangel <[email protected]> * UX enable Gradle caching Gradle Conference https://www.youtube.com/watch?v=30MFtJPjefo Signed-off-by: Andres LeonRangel <[email protected]> * UX updated Variables general file - file has not been tested with Tomcat Signed-off-by: Andres LeonRangel <[email protected]> * UX upgrade Wildfly JDK20 - still getting warnings as i am using AWS JDK21 - should print the statements nicely with printf or a docker printing function Signed-off-by: Andres LeonRangel <[email protected]> * chage app name optimized variables - variables are more readables - war assemble changes to deal with CSS failures Signed-off-by: Andres LeonRangel <[email protected]> * UX CSS left menu right content Signed-off-by: Andres LeonRangel <[email protected]> * UX left menu right block content - generalized most pages to use left menu right structure - added mock functionality where appropriate Signed-off-by: Andres LeonRangel <[email protected]> * cleans up UX attendance module Signed-off-by: Andres LeonRangel <[email protected]> * adds login as the landing point Signed-off-by: Andres LeonRangel <[email protected]> * xhtml touches to make UI UX stable - stable means all pages work - all pages have mock functionality Signed-off-by: Andres LeonRangel <[email protected]> --------- Signed-off-by: Andres LeonRangel <[email protected]>
- Loading branch information
Showing
30 changed files
with
660 additions
and
507 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,10 @@ | ||
# This configuration file was automatically generated by Gitpod. | ||
# Please adjust to your needs (see https://www.gitpod.io/docs/introduction/learn-gitpod/gitpod-yaml) | ||
# and commit this file to your remote git repository to share the goodness with others. | ||
|
||
# Learn more from ready-to-use templates: https://www.gitpod.io/docs/introduction/getting-started/quickstart | ||
|
||
tasks: | ||
- init: gradle build | ||
|
||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -5,23 +5,26 @@ FROM tomcat:jdk17 | |
# FROM tomcat:9.0.85-jdk17-corretto-al2 | ||
# FROM tomcat:9.0-jdk17-corretto-al2 | ||
# FROM tomcat:8.5.97-jdk17-corretto-al2 | ||
|
||
# https://hub.docker.com/layers/library/tomcat/7.0.109-jdk8-openjdk/images/sha256-489823486120d076cb576640c5819c6fa54948f470b46c54f02b48f462eb2c23 | ||
|
||
ARG APP_WAR_FILE_VERSION | ||
ENV APP_WAR_FILE_VERSION=$APP_WAR_FILE_VERSION | ||
ENV APP_WAR_FILE="Attendance" | ||
ENV APP_WAR_FILE_PATH="build/libs/$APP_WAR_FILE-${APP_WAR_FILE_VERSION}" | ||
ENV APP_WAR_FILE_NAME="AttendanceTrak" | ||
ENV APP_WAR_FILE_OUTPUT=$APP_WAR_FILE_NAME-${APP_WAR_FILE_VERSION} | ||
ENV APP_FULL_WAR_FILE_PATH="build/libs/$APP_WAR_FILE_OUTPUT" | ||
|
||
LABEL org.nz.itlatinos.image.authors="[email protected]" | ||
LABEL maintainer="andres.nz" | ||
LABEL war.version="$APP_WAR_FILE_VERSION" | ||
LABEL docker.image.build.command="docker build --build-arg APP_WAR_FILE_VERSION=$APP_WAR_FILE_VERSION --tag aleon1220/soa:latest ." | ||
|
||
RUN printf "WAR version is $APP_WAR_FILE-$APP_WAR_FILE_VERSION" | ||
RUN printf "Path to war file $APP_WAR_FILE_PATH" | ||
# Tomcat Custom settings | ||
RUN printf "\t\t Docker Engine Build APP_WAR_FILE_VERSION %s" $APP_WAR_FILE_VERSION | ||
RUN printf "\t\t Docker Engine Build APP_WAR_FILE_NAME $APP_WAR_FILE_NAME" | ||
RUN printf "\t\t Docker Engine Build WAR APP_WAR_FILE_OUTPUT $APP_WAR_FILE_OUTPUT" | ||
RUN printf "\t\t Docker Engine Build Path to war file $APP_FULL_WAR_FILE_PATH" | ||
|
||
# RUN echo ${PWD} && ls -lR # Debugging | ||
# USER 1000 # considered permissions issue | ||
COPY ${APP_WAR_FILE_PATH}.war /usr/local/tomcat/webapps | ||
COPY ${APP_FULL_WAR_FILE_PATH}.war /usr/local/tomcat/webapps | ||
# COPY build/libs/AttendanceApp-0.7.2 /usr/local/tomcat/webapps/ | ||
# https://forums.docker.com/t/docker-build-multistage-failed-to-compute-cache-key/134316/20 |
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,16 +1,20 @@ | ||
# https://quay.io/repository/wildfly/wildfly?tab=tags | ||
FROM quay.io/wildfly/wildfly:27.0.0.Final-jdk17 | ||
FROM quay.io/wildfly/wildfly:29.0.0.Final-jdk20 | ||
|
||
ARG APP_WAR_FILE_VERSION | ||
ENV APP_WAR_FILE_VERSION=$APP_WAR_FILE_VERSION | ||
ENV APP_WAR_FILE="Attendance" | ||
ENV APP_WAR_FILE_PATH="build/libs/$APP_WAR_FILE-${APP_WAR_FILE_VERSION}" | ||
ENV APP_WAR_FILE_NAME="AttendanceTrak" | ||
ENV APP_WAR_FILE_OUTPUT=$APP_WAR_FILE_NAME-${APP_WAR_FILE_VERSION} | ||
ENV APP_FULL_WAR_FILE_PATH="build/libs/$APP_WAR_FILE_OUTPUT.war" | ||
|
||
LABEL org.nz.itlatinos.image.authors="[email protected]" | ||
LABEL maintainer="www.andres.nz" | ||
LABEL war.version="$APP_WAR_FILE_VERSION" | ||
LABEL docker.image.build.command="docker build --build-arg APP_WAR_FILE_VERSION=$version --tag aleon1220/attendance-webapp:$version --file Dockerfile.wildfly ." | ||
|
||
RUN printf "WAR version is $APP_WAR_FILE-$APP_WAR_FILE_VERSION" | ||
RUN printf "Path to war file $APP_WAR_FILE_PATH" | ||
ADD ${APP_WAR_FILE_PATH}.war /opt/jboss/wildfly/standalone/deployments/ | ||
RUN printf "\t\t Docker Engine Build APP_WAR_FILE_VERSION %s" $APP_WAR_FILE_VERSION | ||
RUN printf "\t\t Docker Engine Build APP_WAR_FILE_NAME $APP_WAR_FILE_NAME" | ||
RUN printf "\t\t Docker Engine Build WAR APP_WAR_FILE_OUTPUT $APP_WAR_FILE_OUTPUT" | ||
RUN printf "\t\t Docker Engine Build Path to war file $APP_FULL_WAR_FILE_PATH" | ||
|
||
ADD ${APP_FULL_WAR_FILE_PATH} /opt/jboss/wildfly/standalone/deployments/ |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
log4j_version = 1.2.17 | ||
jaxb_version = 2.3.1 | ||
junit_version = 5.5.1 | ||
org.gradle.caching=true |
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.