Skip to content

Commit ffa947e

Browse files
author
Matt Raible
committed
Generate reactive microservices
1 parent 650d53b commit ffa947e

File tree

637 files changed

+96729
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

637 files changed

+96729
-0
lines changed

reactive-jhipster/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
*.env
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# EditorConfig helps developers define and maintain consistent
2+
# coding styles between different editors and IDEs
3+
# editorconfig.org
4+
5+
root = true
6+
7+
[*]
8+
9+
# We recommend you to keep these unchanged
10+
end_of_line = lf
11+
charset = utf-8
12+
trim_trailing_whitespace = true
13+
insert_final_newline = true
14+
15+
# Change these settings to your own preference
16+
indent_style = space
17+
indent_size = 4
18+
19+
[*.{ts,tsx,js,jsx,json,css,scss,yml,html}]
20+
indent_size = 2
21+
22+
[*.md]
23+
trim_trailing_whitespace = false
Lines changed: 150 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,150 @@
1+
# This file is inspired by https://github.com/alexkaratarakis/gitattributes
2+
#
3+
# Auto detect text files and perform LF normalization
4+
# http://davidlaing.com/2012/09/19/customise-your-gitattributes-to-become-a-git-ninja/
5+
* text=auto
6+
7+
# The above will handle all files NOT found below
8+
# These files are text and should be normalized (Convert crlf => lf)
9+
10+
*.bat text eol=crlf
11+
*.cmd text eol=crlf
12+
*.ps1 text eol=crlf
13+
*.coffee text
14+
*.css text
15+
*.cql text
16+
*.df text
17+
*.ejs text
18+
*.html text
19+
*.java text
20+
*.js text
21+
*.json text
22+
*.less text
23+
*.properties text
24+
*.sass text
25+
*.scss text
26+
*.sh text eol=lf
27+
*.sql text
28+
*.txt text
29+
*.ts text
30+
*.xml text
31+
*.yaml text
32+
*.yml text
33+
34+
# Documents
35+
*.doc diff=astextplain
36+
*.DOC diff=astextplain
37+
*.docx diff=astextplain
38+
*.DOCX diff=astextplain
39+
*.dot diff=astextplain
40+
*.DOT diff=astextplain
41+
*.pdf diff=astextplain
42+
*.PDF diff=astextplain
43+
*.rtf diff=astextplain
44+
*.RTF diff=astextplain
45+
*.markdown text
46+
*.md text
47+
*.adoc text
48+
*.textile text
49+
*.mustache text
50+
*.csv text
51+
*.tab text
52+
*.tsv text
53+
*.txt text
54+
AUTHORS text
55+
CHANGELOG text
56+
CHANGES text
57+
CONTRIBUTING text
58+
COPYING text
59+
copyright text
60+
*COPYRIGHT* text
61+
INSTALL text
62+
license text
63+
LICENSE text
64+
NEWS text
65+
readme text
66+
*README* text
67+
TODO text
68+
69+
# Graphics
70+
*.png binary
71+
*.jpg binary
72+
*.jpeg binary
73+
*.gif binary
74+
*.tif binary
75+
*.tiff binary
76+
*.ico binary
77+
# SVG treated as an asset (binary) by default. If you want to treat it as text,
78+
# comment-out the following line and uncomment the line after.
79+
*.svg binary
80+
#*.svg text
81+
*.eps binary
82+
83+
# These files are binary and should be left untouched
84+
# (binary is a macro for -text -diff)
85+
*.class binary
86+
*.jar binary
87+
*.war binary
88+
89+
## LINTERS
90+
.csslintrc text
91+
.eslintrc text
92+
.jscsrc text
93+
.jshintrc text
94+
.jshintignore text
95+
.stylelintrc text
96+
97+
## CONFIGS
98+
*.conf text
99+
*.config text
100+
.editorconfig text
101+
.gitattributes text
102+
.gitconfig text
103+
.gitignore text
104+
.htaccess text
105+
*.npmignore text
106+
107+
## HEROKU
108+
Procfile text
109+
.slugignore text
110+
111+
## AUDIO
112+
*.kar binary
113+
*.m4a binary
114+
*.mid binary
115+
*.midi binary
116+
*.mp3 binary
117+
*.ogg binary
118+
*.ra binary
119+
120+
## VIDEO
121+
*.3gpp binary
122+
*.3gp binary
123+
*.as binary
124+
*.asf binary
125+
*.asx binary
126+
*.fla binary
127+
*.flv binary
128+
*.m4v binary
129+
*.mng binary
130+
*.mov binary
131+
*.mp4 binary
132+
*.mpeg binary
133+
*.mpg binary
134+
*.swc binary
135+
*.swf binary
136+
*.webm binary
137+
138+
## ARCHIVES
139+
*.7z binary
140+
*.gz binary
141+
*.rar binary
142+
*.tar binary
143+
*.zip binary
144+
145+
## FONTS
146+
*.ttf binary
147+
*.eot binary
148+
*.otf binary
149+
*.woff binary
150+
*.woff2 binary

reactive-jhipster/blog/.gitignore

Lines changed: 147 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,147 @@
1+
######################
2+
# Project Specific
3+
######################
4+
/build/resources/main/static/**
5+
/src/test/javascript/coverage/
6+
7+
######################
8+
# Node
9+
######################
10+
/node/
11+
node_tmp/
12+
node_modules/
13+
npm-debug.log.*
14+
/.awcache/*
15+
/.cache-loader/*
16+
17+
######################
18+
# SASS
19+
######################
20+
.sass-cache/
21+
22+
######################
23+
# Eclipse
24+
######################
25+
*.pydevproject
26+
.project
27+
.metadata
28+
tmp/
29+
tmp/**/*
30+
*.tmp
31+
*.bak
32+
*.swp
33+
*~.nib
34+
local.properties
35+
.classpath
36+
.settings/
37+
.loadpath
38+
.factorypath
39+
/src/main/resources/rebel.xml
40+
41+
# External tool builders
42+
.externalToolBuilders/**
43+
44+
# Locally stored "Eclipse launch configurations"
45+
*.launch
46+
47+
# CDT-specific
48+
.cproject
49+
50+
# PDT-specific
51+
.buildpath
52+
53+
# STS-specific
54+
/.sts4-cache/*
55+
56+
######################
57+
# IntelliJ
58+
######################
59+
.idea/
60+
*.iml
61+
*.iws
62+
*.ipr
63+
*.ids
64+
*.orig
65+
classes/
66+
out/
67+
68+
######################
69+
# Visual Studio Code
70+
######################
71+
.vscode/
72+
73+
######################
74+
# Maven
75+
######################
76+
/log/
77+
/target/
78+
79+
######################
80+
# Gradle
81+
######################
82+
.gradle/
83+
/build/
84+
85+
######################
86+
# Package Files
87+
######################
88+
*.jar
89+
*.war
90+
*.ear
91+
*.db
92+
93+
######################
94+
# Windows
95+
######################
96+
# Windows image file caches
97+
Thumbs.db
98+
99+
# Folder config file
100+
Desktop.ini
101+
102+
######################
103+
# Mac OSX
104+
######################
105+
.DS_Store
106+
.svn
107+
108+
# Thumbnails
109+
._*
110+
111+
# Files that might appear on external disk
112+
.Spotlight-V100
113+
.Trashes
114+
115+
######################
116+
# Directories
117+
######################
118+
/bin/
119+
/deploy/
120+
121+
######################
122+
# Logs
123+
######################
124+
*.log*
125+
126+
######################
127+
# Others
128+
######################
129+
*.class
130+
*.*~
131+
*~
132+
.merge_file*
133+
134+
######################
135+
# Gradle Wrapper
136+
######################
137+
!gradle/wrapper/gradle-wrapper.jar
138+
139+
######################
140+
# Maven Wrapper
141+
######################
142+
!.mvn/wrapper/maven-wrapper.jar
143+
144+
######################
145+
# ESLint
146+
######################
147+
.eslintcache

reactive-jhipster/blog/.huskyrc

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"hooks": {
3+
"pre-commit": "lint-staged"
4+
}
5+
}
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
{
2+
"name": "Blog",
3+
"fields": [
4+
{
5+
"fieldName": "name",
6+
"fieldType": "String",
7+
"fieldValidateRules": ["required", "minlength"],
8+
"fieldValidateRulesMinlength": "3"
9+
},
10+
{
11+
"fieldName": "handle",
12+
"fieldType": "String",
13+
"fieldValidateRules": ["required", "minlength"],
14+
"fieldValidateRulesMinlength": "2"
15+
}
16+
],
17+
"relationships": [
18+
{
19+
"relationshipType": "many-to-one",
20+
"otherEntityName": "user",
21+
"otherEntityRelationshipName": "blog",
22+
"relationshipName": "user",
23+
"otherEntityField": "login"
24+
}
25+
],
26+
"entityTableName": "blog",
27+
"dto": "no",
28+
"pagination": "no",
29+
"service": "no",
30+
"jpaMetamodelFiltering": false,
31+
"fluentMethods": true,
32+
"readOnly": false,
33+
"embedded": false,
34+
"applications": ["gateway", "blog"],
35+
"microserviceName": "blog",
36+
"clientRootFolder": "blog",
37+
"databaseType": "neo4j",
38+
"changelogDate": "20210115055143"
39+
}

0 commit comments

Comments
 (0)