Skip to content

Commit

Permalink
sso security fe1
Browse files Browse the repository at this point in the history
  • Loading branch information
Manna Mahmud committed May 1, 2021
1 parent ec37322 commit c234da0
Show file tree
Hide file tree
Showing 15 changed files with 627 additions and 113 deletions.
2 changes: 1 addition & 1 deletion backends/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.kareegar.trainings</groupId>
<groupId>com.kareegar.mmfb</groupId>
<artifactId>mmfb</artifactId>
<version>0.0.1.SNAPSHOT</version>
</parent>
Expand Down
6 changes: 6 additions & 0 deletions edge/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,14 @@ services:
DB_PASSWORD: password
KEYCLOAK_USER: admin
KEYCLOAK_PASSWORD: Pa55w0rd
PROXY_ADDRESS_FORWARDING: "true"
# Uncomment the line below if you want to specify JDBC parameters. The parameter below is just an example, and it shouldn't be used in production without knowledge. It is highly recommended that you read the PostgreSQL JDBC driver documentation in order to use it.
#JDBC_PARAMS: "ssl=true"
command:
- "-b 0.0.0.0"
- "-Dkeycloak.profile.feature.upload_scripts=enabled -Dkeycloak.profile.feature.docker=enabled"
#- "-Dkeycloak.migration.action=import -Dkeycloak.migration.provider=dir -Dkeycloak.migration.dir=/opt/jboss/keycloak/import-dir -Dkeycloak.migration.strategy=OVERWRITE_EXISTING"

labels:
traefik.enable: "true"
traefik.http.routers.auth.rule: Host(`mmfb.com`) && PathPrefix(`/auth`)
Expand Down
2 changes: 1 addition & 1 deletion edge/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.kareegar.trainings</groupId>
<groupId>com.kareegar.mmfb</groupId>
<artifactId>mmfb</artifactId>
<version>0.0.1.SNAPSHOT</version>
</parent>
Expand Down
179 changes: 179 additions & 0 deletions frontends/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,179 @@
######################
# Project Specific
######################
/src/main/webapp/content/css/main.css
/target/classes/static/**
/src/test/javascript/coverage/
/src/main/public/**

######################
# Node
######################
/node/
node_tmp/
node_modules/
npm-debug.log.*
/.awcache/*
/.cache-loader/*

######################
# SASS
######################
.sass-cache/

######################
# Eclipse
######################
*.pydevproject
.project
.metadata
tmp/
tmp/**/*
*.tmp
*.bak
*.swp
*~.nib
local.properties
.classpath
.settings/
.loadpath
.factorypath
/src/main/resources/rebel.xml

# External tool builders
.externalToolBuilders/**

# Locally stored "Eclipse launch configurations"
*.launch

# CDT-specific
.cproject

# PDT-specific
.buildpath

# STS-specific
/.sts4-cache/*
######################
# Intellij
######################
.idea/
*.iml
*.iws
*.ipr
*.ids
*.orig
classes/
out/

######################
# Visual Studio Code
######################
.vscode/

######################
# Maven
######################
/log/
/target/

######################
# Gradle
######################
.gradle/
/build/

######################
# Package Files
######################
*.jar
*.war
*.ear
*.db

######################
# Windows
######################
# Windows image file caches
Thumbs.db

# Folder config file
Desktop.ini

######################
# Mac OSX
######################
.DS_Store
.svn

# Thumbnails
._*

# Files that might appear on external disk
.Spotlight-V100
.Trashes

######################
# Directories
######################
/bin/
/deploy/

######################
# Logs
######################
*.log*

######################
# Others
######################
*.class
*.*~
*~
.merge_file*

######################
# Gradle Wrapper
######################
!gradle/wrapper/gradle-wrapper.jar

######################
# Maven Wrapper
######################
!.mvn/wrapper/maven-wrapper.jar

######################
# ESLint
######################
.eslintcache
dump.rdb

### APP ###
app/package-lock.json
app/node/
app/node_tmp/
app/node_modules/
app/target/

### Gateway ###
gateway/package-lock.json
gateway/node/
gateway/node_modules/
gateway/node_temp/
gateway/target/


### ManualQc ###
manualqc-api/package-lock.json
manualqc-api/node/
manualqc-api/node_modules/
manualqc-api/node_temp/
manualqc-api/target/

### SystemQc ###
systemqc-api/package-lock.json
systemqc-api/node/
systemqc-api/node_modules/
systemqc-api/node_temp/
systemqc-api/target/
edge/letsencrypt/acme.json
Loading

0 comments on commit c234da0

Please sign in to comment.