-
-
Notifications
You must be signed in to change notification settings - Fork 4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
58 additions
and
0 deletions.
There are no files selected for viewing
58 changes: 58 additions & 0 deletions
58
.blueprint/generate-sample/templates/samples/mf-simple.jdl
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,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 | ||
} |