From 0778ae2c182d6ab5038535fe1ff42cdf18634805 Mon Sep 17 00:00:00 2001 From: liosha84 <138026690+liosha84@users.noreply.github.com> Date: Wed, 11 Jun 2025 20:36:41 +0300 Subject: [PATCH] add frontend --- .idea/.gitignore | 3 +++ .idea/aws.xml | 11 ++++++++++ .idea/compiler.xml | 18 +++++++++++++++++ .idea/encodings.xml | 7 +++++++ .idea/jambotron.iml | 9 +++++++++ .idea/jarRepositories.xml | 20 +++++++++++++++++++ .idea/misc.xml | 14 +++++++++++++ .idea/modules.xml | 8 ++++++++ .idea/vcs.xml | 6 ++++++ .../JambotronFrontendApplication.java | 2 ++ 10 files changed, 98 insertions(+) create mode 100644 .idea/.gitignore create mode 100644 .idea/aws.xml create mode 100644 .idea/compiler.xml create mode 100644 .idea/encodings.xml create mode 100644 .idea/jambotron.iml create mode 100644 .idea/jarRepositories.xml create mode 100644 .idea/misc.xml create mode 100644 .idea/modules.xml create mode 100644 .idea/vcs.xml diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..26d3352 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,3 @@ +# Default ignored files +/shelf/ +/workspace.xml diff --git a/.idea/aws.xml b/.idea/aws.xml new file mode 100644 index 0000000..b63b642 --- /dev/null +++ b/.idea/aws.xml @@ -0,0 +1,11 @@ + + + + + + \ No newline at end of file diff --git a/.idea/compiler.xml b/.idea/compiler.xml new file mode 100644 index 0000000..3be8669 --- /dev/null +++ b/.idea/compiler.xml @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/encodings.xml b/.idea/encodings.xml new file mode 100644 index 0000000..0bb6eb3 --- /dev/null +++ b/.idea/encodings.xml @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/.idea/jambotron.iml b/.idea/jambotron.iml new file mode 100644 index 0000000..d6ebd48 --- /dev/null +++ b/.idea/jambotron.iml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/jarRepositories.xml b/.idea/jarRepositories.xml new file mode 100644 index 0000000..712ab9d --- /dev/null +++ b/.idea/jarRepositories.xml @@ -0,0 +1,20 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..6397071 --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,14 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..479377e --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..35eb1dd --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/jambotron-frontend/src/main/java/com/jambotrongroup/jambotron_frontend/JambotronFrontendApplication.java b/jambotron-frontend/src/main/java/com/jambotrongroup/jambotron_frontend/JambotronFrontendApplication.java index 25995af..b62e9cc 100644 --- a/jambotron-frontend/src/main/java/com/jambotrongroup/jambotron_frontend/JambotronFrontendApplication.java +++ b/jambotron-frontend/src/main/java/com/jambotrongroup/jambotron_frontend/JambotronFrontendApplication.java @@ -9,6 +9,8 @@ public class JambotronFrontendApplication { public static void main(String[] args) { SpringApplication.run(JambotronFrontendApplication.class, args); + + } }