Skip to content

Commit 2b7b611

Browse files
committed
Initial commit
0 parents  commit 2b7b611

22 files changed

+1003
-0
lines changed

.gitignore

Lines changed: 88 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,88 @@
1+
# Compiled class file
2+
*.class
3+
4+
# Log file
5+
*.log
6+
7+
# BlueJ files
8+
*.ctxt
9+
10+
# Mobile Tools for Java (J2ME)
11+
.mtj.tmp/
12+
13+
# Package Files #
14+
*.nar
15+
*.ear
16+
*.zip
17+
*.tar.gz
18+
*.rar
19+
20+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
21+
hs_err_pid*
22+
23+
*.tmp
24+
**/temp
25+
26+
# https://stackoverflow.com/questions/1470572/ignoring-any-bin-directory-on-a-git-project #
27+
28+
# will ignore all files in target!!! #
29+
30+
target/*
31+
32+
# IntelliJ IDEA #
33+
.idea
34+
/out/
35+
*.iws
36+
*.iml
37+
*.ipr
38+
out/
39+
!**/src/main/**/out/
40+
!**/src/test/**/out/
41+
42+
# NetBeans #
43+
/nbproject/private/
44+
/nbbuild/
45+
/dist/
46+
/nbdist/
47+
/.nb-gradle/
48+
build/
49+
!**/src/main/**/build/
50+
!**/src/test/**/build/
51+
52+
# VS Code #
53+
.vscode/
54+
55+
# eclipse specific #
56+
*.pydevproject
57+
.project
58+
.metadata
59+
bin/**
60+
tmp/**
61+
tmp/**/*
62+
*.bak
63+
*.swp
64+
*~.nib
65+
local.properties
66+
.classpath
67+
.settings/
68+
.loadpath
69+
70+
HELP.md
71+
.gradle
72+
!gradle/wrapper/gradle-wrapper.jar
73+
74+
### STS ###
75+
.apt_generated
76+
.factorypath
77+
.settings
78+
.springBeans
79+
.sts4-cache
80+
bin/
81+
!**/src/main/**/bin/
82+
!**/src/test/**/bin/
83+
84+
### macOs ###
85+
.DS_Store
86+
87+
.env
88+
.gitkeep

.mvn/wrapper/maven-wrapper.jar

58.5 KB
Binary file not shown.

.mvn/wrapper/maven-wrapper.properties

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Licensed to the Apache Software Foundation (ASF) under one
2+
# or more contributor license agreements. See the NOTICE file
3+
# distributed with this work for additional information
4+
# regarding copyright ownership. The ASF licenses this file
5+
# to you under the Apache License, Version 2.0 (the
6+
# "License"); you may not use this file except in compliance
7+
# with the License. You may obtain a copy of the License at
8+
#
9+
# https://www.apache.org/licenses/LICENSE-2.0
10+
#
11+
# Unless required by applicable law or agreed to in writing,
12+
# software distributed under the License is distributed on an
13+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14+
# KIND, either express or implied. See the License for the
15+
# specific language governing permissions and limitations
16+
# under the License.
17+
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.8.7/apache-maven-3.8.7-bin.zip
18+
wrapperUrl=https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.1.1/maven-wrapper-3.1.1.jar

README.md

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
![img.png](img.png)
2+
3+
4+
## Backend Dependencies
5+
6+
- Java Development Kit - JDK 17
7+
- Spring Boot 3
8+
- Spring Framework 6
9+
10+
- Lombok
11+
- ModelMapper
12+
- Spring Data JPA
13+
- Spring Hibernate
14+
- Spring Web
15+
- Spring Boot DevTools
16+
- MySQL
17+
- Spring Security
18+
- Log4j2
19+
- ThymeLeaf
20+
21+
## Test Dependencies
22+
23+
- JUnit 5
24+
- Mockito
25+
- JUnit Jupiter
26+
- Spring Boot Test
27+
- Spring Boot Starter Test
28+
- Spring Boot Test Autoconfigure
29+
- JUnit 5
30+
31+
# Created by:
32+
33+
![img_1.png](img_1.png)

img.png

30.6 KB
Loading

img_1.png

16.8 KB
Loading

0 commit comments

Comments
 (0)