Skip to content

Commit

Permalink
add mf-simple sample
Browse files Browse the repository at this point in the history
  • Loading branch information
mshima committed Oct 3, 2024
1 parent 3430f1b commit f3d3f81
Showing 1 changed file with 58 additions and 0 deletions.
58 changes: 58 additions & 0 deletions .blueprint/generate-sample/templates/samples/mf-simple.jdl
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
/*
* Microservice stack sample to test compilation and base microfrontend functionality.
*
* @example
* jhipster.cjs generate-sample mf-simple.jdl --client-framework vue
*/

application {
config {
applicationType gateway
baseName gateway
clientFramework angular
creationTimestamp 1617901618886
databaseType no
jwtSecretKey "ZjY4MTM4YjI5YzMwZjhjYjI2OTNkNTRjMWQ5Y2Q0Y2YwOWNmZTE2NzRmYzU3NTMwM2NjOTE3MTllOTM3MWRkMzcyYTljMjVmNmQ0Y2MxOTUzODc0MDhhMTlkMDIxMzI2YzQzZDM2ZDE3MmQ3NjVkODk3OTVmYzljYTQyZDNmMTQ="
packageName jhipster.tech.gateway
serviceDiscoveryType eureka
testFrameworks [cypress]
microfrontends [notification]
}
}

application {
config {
applicationType microservice
baseName notification
creationTimestamp 1617901618887
clientFramework angular
jwtSecretKey "ZjY4MTM4YjI5YzMwZjhjYjI2OTNkNTRjMWQ5Y2Q0Y2YwOWNmZTE2NzRmYzU3NTMwM2NjOTE3MTllOTM3MWRkMzcyYTljMjVmNmQ0Y2MxOTUzODc0MDhhMTlkMDIxMzI2YzQzZDM2ZDE3MmQ3NjVkODk3OTVmYzljYTQyZDNmMTQ="
packageName jhipster.tech.notification
prodDatabaseType postgresql
serverPort 8081
serviceDiscoveryType eureka
testFrameworks [cypress]
}
entities Notification
}

@ChangelogDate(20210408164814)
entity Notification {
title String required
}

deployment {
deploymentType docker-compose,
appsFolders [gateway, notification]
dockerRepositoryName "hipsterslabs"
monitoring no
serviceDiscoveryType eureka
}

deployment {
deploymentType kubernetes,
appsFolders [gateway, notification]
dockerRepositoryName "hipsterslabs"
monitoring no
serviceDiscoveryType eureka
}

0 comments on commit f3d3f81

Please sign in to comment.