Skip to content

Commit cdc8a0a

Browse files
committed
Changing to Spring project
1 parent ffdb053 commit cdc8a0a

File tree

153 files changed

+473
-13415
lines changed

Some content is hidden

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

153 files changed

+473
-13415
lines changed

.env

-35
This file was deleted.

.gitignore

+36-130
Original file line numberDiff line numberDiff line change
@@ -1,131 +1,37 @@
1-
### Node ###
2-
# Logs
3-
logs
4-
*.log
5-
npm-debug.log*
6-
yarn-debug.log*
7-
yarn-error.log*
8-
lerna-debug.log*
9-
package-lock.json
10-
11-
# Diagnostic reports (https://nodejs.org/api/report.html)
12-
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
13-
14-
# Runtime data
15-
pids
16-
*.pid
17-
*.seed
18-
*.pid.lock
19-
20-
# Directory for instrumented libs generated by jscoverage/JSCover
21-
lib-cov
22-
23-
# Coverage directory used by tools like istanbul
24-
coverage
25-
*.lcov
26-
27-
# nyc test coverage
28-
.nyc_output
29-
30-
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
31-
.grunt
32-
33-
# Bower dependency directory (https://bower.io/)
34-
bower_components
35-
36-
# node-waf configuration
37-
.lock-wscript
38-
39-
# Compiled binary addons (https://nodejs.org/api/addons.html)
40-
build/Release
41-
42-
# Dependency directories
43-
node_modules/
44-
jspm_packages/
45-
46-
# TypeScript v1 declaration files
47-
typings/
48-
49-
# TypeScript cache
50-
*.tsbuildinfo
51-
52-
# Optional npm cache directory
53-
.npm
54-
55-
# Optional eslint cache
56-
.eslintcache
57-
58-
# Optional REPL history
59-
.node_repl_history
60-
61-
# Output of 'npm pack'
62-
*.tgz
63-
64-
# Yarn Integrity file
65-
.yarn-integrity
66-
67-
# dotenv environment variables file (should not be commented out in real project)
68-
# .env
69-
# .env.test
70-
71-
# parcel-bundler cache (https://parceljs.org/)
72-
.cache
73-
74-
# next.js build output
75-
.next
76-
77-
# nuxt.js build output
78-
.nuxt
79-
80-
# rollup.js default build output
81-
dist/
82-
83-
# Uncomment the public line if your project uses Gatsby
84-
# https://nextjs.org/blog/next-9-1#public-directory-support
85-
# https://create-react-app.dev/docs/using-the-public-folder/#docsNav
86-
# public
87-
88-
# Storybook build outputs
89-
.out
90-
.storybook-out
91-
92-
# vuepress build output
93-
.vuepress/dist
94-
95-
# Serverless directories
96-
.serverless/
97-
98-
# FuseBox cache
99-
.fusebox/
100-
101-
# DynamoDB Local files
102-
.dynamodb/
103-
104-
# Temporary folders
105-
tmp/
106-
temp/
107-
108-
### VisualStudioCode ###
109-
.vscode/*
110-
!.vscode/settings.json
111-
!.vscode/tasks.json
112-
!.vscode/launch.json
113-
!.vscode/extensions.json
114-
115-
### VisualStudioCode Patch ###
116-
# Ignore all local history of files
117-
.history
118-
119-
# idea
1+
HELP.md
2+
.gradle
3+
build/
4+
!gradle/wrapper/gradle-wrapper.jar
5+
!**/src/main/**/build/
6+
!**/src/test/**/build/
7+
8+
### STS ###
9+
.apt_generated
10+
.classpath
11+
.factorypath
12+
.project
13+
.settings
14+
.springBeans
15+
.sts4-cache
16+
bin/
17+
!**/src/main/**/bin/
18+
!**/src/test/**/bin/
19+
20+
### IntelliJ IDEA ###
12021
.idea
121-
target/
122-
123-
# c8
124-
coverage/
125-
.c8
126-
127-
# Drawio Diagram backup files
128-
*.bkp
129-
*.dtmp
130-
131-
*.log
22+
*.iws
23+
*.iml
24+
*.ipr
25+
out/
26+
!**/src/main/**/out/
27+
!**/src/test/**/out/
28+
29+
### NetBeans ###
30+
/nbproject/private/
31+
/nbbuild/
32+
/dist/
33+
/nbdist/
34+
/.nb-gradle/
35+
36+
### VS Code ###
37+
.vscode/

.mocharc.js

-16
This file was deleted.

HELP.md

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# Getting Started
2+
3+
### Reference Documentation
4+
For further reference, please consider the following sections:
5+
6+
* [Official Gradle documentation](https://docs.gradle.org)
7+
* [Spring Boot Gradle Plugin Reference Guide](https://docs.spring.io/spring-boot/docs/2.7.3/gradle-plugin/reference/html/)
8+
* [Create an OCI image](https://docs.spring.io/spring-boot/docs/2.7.3/gradle-plugin/reference/html/#build-image)
9+
* [Spring Web](https://docs.spring.io/spring-boot/docs/2.7.3/reference/htmlsingle/#web)
10+
* [Spring Boot DevTools](https://docs.spring.io/spring-boot/docs/2.7.3/reference/htmlsingle/#using.devtools)
11+
* [WebSocket](https://docs.spring.io/spring-boot/docs/2.7.3/reference/htmlsingle/#messaging.websockets)
12+
13+
### Guides
14+
The following guides illustrate how to use some features concretely:
15+
16+
* [Building a RESTful Web Service](https://spring.io/guides/gs/rest-service/)
17+
* [Serving Web Content with Spring MVC](https://spring.io/guides/gs/serving-web-content/)
18+
* [Building REST services with Spring](https://spring.io/guides/tutorials/rest/)
19+
* [Using WebSocket to build an interactive web application](https://spring.io/guides/gs/messaging-stomp-websocket/)
20+
21+
### Additional Links
22+
These additional references should also help you:
23+
24+
* [Gradle Build Scans – insights for your project's build](https://scans.gradle.com#gradle)
25+

ansible/ansible.cfg

-5
This file was deleted.

ansible/ansible.sh

-12
This file was deleted.

ansible/group_vars/vps/vps.yml

-18
This file was deleted.

ansible/prod.inventory

-8
This file was deleted.

ansible/provision_vps.yml

-70
This file was deleted.

0 commit comments

Comments
 (0)