Skip to content

Commit 3c8a6d4

Browse files
committed
initial docker API POJOs and base APIs
Signed-off-by: Pratik raj <[email protected]>
0 parents  commit 3c8a6d4

File tree

516 files changed

+73559
-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.

516 files changed

+73559
-0
lines changed

.editorconfig

+23
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,vue}]
20+
indent_size = 2
21+
22+
[*.md]
23+
trim_trailing_whitespace = false

.gitattributes

+150
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

.gitignore

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

.huskyrc

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"hooks": {
3+
"pre-commit": "lint-staged"
4+
}
5+
}

.jhipster/DockerHosts.json

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{
2+
"fields": [
3+
{
4+
"fieldName": "name",
5+
"fieldType": "String"
6+
},
7+
{
8+
"fieldName": "ipaddress",
9+
"fieldType": "String"
10+
},
11+
{
12+
"fieldName": "tlsenabled",
13+
"fieldType": "Boolean"
14+
}
15+
],
16+
"relationships": [],
17+
"service": "serviceClass",
18+
"dto": "no",
19+
"jpaMetamodelFiltering": false,
20+
"readOnly": false,
21+
"pagination": "no",
22+
"name": "DockerHosts",
23+
"changelogDate": "20210628101434"
24+
}

.lintstagedrc.js

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
module.exports = {
2+
'{,src/**/,webpack/}*.{md,json,yml,html,js,ts,tsx,css,scss,java}': ['prettier --write'],
3+
};

0 commit comments

Comments
 (0)