Skip to content

Commit 42fa6eb

Browse files
committed
Updates
0 parents  commit 42fa6eb

22 files changed

Lines changed: 188 additions & 0 deletions

.gitignore

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2+
3+
# dependencies
4+
/node_modules
5+
/.pnp
6+
.pnp.js
7+
8+
# testing
9+
/coverage
10+
11+
# production
12+
/build
13+
14+
# misc
15+
.DS_Store
16+
.env.local
17+
.env.development.local
18+
.env.test.local
19+
.env.production.local
20+
21+
npm-debug.log*
22+
yarn-debug.log*
23+
yarn-error.log*

BackEnd/.DOCKERFILE

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Use an official OpenJDK runtime as a parent image
2+
FROM openjdk:17-jdk-slim
3+
4+
# Set the working directory
5+
WORKDIR /app
6+
7+
# Copy the Maven build output
8+
COPY target/*.jar app.jar
9+
10+
# Expose port
11+
EXPOSE 8080
12+
13+
# Run the jar file
14+
ENTRYPOINT ["java","-jar","app.jar"]

BackEnd/.gitattributes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/mvnw text eol=lf
2+
*.cmd text eol=crlf

BackEnd/.gitignore

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
HELP.md
2+
target/
3+
.mvn/wrapper/maven-wrapper.jar
4+
!**/src/main/**/target/
5+
!**/src/test/**/target/
6+
7+
### STS ###
8+
.apt_generated
9+
.classpath
10+
.factorypath
11+
.project
12+
.settings
13+
.springBeans
14+
.sts4-cache
15+
16+
### IntelliJ IDEA ###
17+
.idea
18+
*.iws
19+
*.iml
20+
*.ipr
21+
22+
### NetBeans ###
23+
/nbproject/private/
24+
/nbbuild/
25+
/dist/
26+
/nbdist/
27+
/.nb-gradle/
28+
build/
29+
!**/src/main/**/build/
30+
!**/src/test/**/build/
31+
32+
### VS Code ###
33+
.vscode/
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
wrapperVersion=3.3.4
2+
distributionType=only-script
3+
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.11/apache-maven-3.9.11-bin.zip

asset-manifest.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"files": {
3+
"main.css": "/GraphQLWithSpring/FrontEnd/static/css/main.fb665e37.css",
4+
"main.js": "/GraphQLWithSpring/FrontEnd/static/js/main.d877b89a.js",
5+
"static/js/453.d644e9d9.chunk.js": "/GraphQLWithSpring/FrontEnd/static/js/453.d644e9d9.chunk.js",
6+
"index.html": "/GraphQLWithSpring/FrontEnd/index.html",
7+
"main.fb665e37.css.map": "/GraphQLWithSpring/FrontEnd/static/css/main.fb665e37.css.map",
8+
"main.d877b89a.js.map": "/GraphQLWithSpring/FrontEnd/static/js/main.d877b89a.js.map",
9+
"453.d644e9d9.chunk.js.map": "/GraphQLWithSpring/FrontEnd/static/js/453.d644e9d9.chunk.js.map"
10+
},
11+
"entrypoints": [
12+
"static/css/main.fb665e37.css",
13+
"static/js/main.d877b89a.js"
14+
]
15+
}

favicon.ico

3.78 KB
Binary file not shown.

images/Spring Boot logo.png

321 KB
Loading

images/graphql-logo.png

173 KB
Loading

images/rb-logo.png

5.29 KB
Loading

0 commit comments

Comments
 (0)