diff --git a/pom.xml b/pom.xml
deleted file mode 100644
index 7553056..0000000
--- a/pom.xml
+++ /dev/null
@@ -1,73 +0,0 @@
-
-
- 4.0.0
- io.github.timemachinelab
- PromptoLab
- 0.0.1-SNAPSHOT
- PromptoLab
- PromptoLab
-
-
- 11
- UTF-8
- UTF-8
- 2.6.13
-
-
-
- org.springframework.boot
- spring-boot-starter
-
-
-
- org.springframework.boot
- spring-boot-starter-test
- test
-
-
-
-
-
- org.springframework.boot
- spring-boot-dependencies
- ${spring-boot.version}
- pom
- import
-
-
-
-
-
-
-
- org.apache.maven.plugins
- maven-compiler-plugin
- 3.8.1
-
- 11
- 11
- UTF-8
-
-
-
- org.springframework.boot
- spring-boot-maven-plugin
- ${spring-boot.version}
-
- io.github.timemachinelab.promptolab.PromptoLabApplication
- true
-
-
-
- repackage
-
- repackage
-
-
-
-
-
-
-
-
diff --git a/Dockerfile b/prompto-lab-app/Dockerfile
similarity index 100%
rename from Dockerfile
rename to prompto-lab-app/Dockerfile
diff --git a/prompto-lab-app/pom.xml b/prompto-lab-app/pom.xml
new file mode 100644
index 0000000..99bd24b
--- /dev/null
+++ b/prompto-lab-app/pom.xml
@@ -0,0 +1,20 @@
+
+
+ 4.0.0
+
+ io.github.timemachinelab
+ PromptoLab
+ 0.0.1-SNAPSHOT
+
+
+ prompto-lab-app
+
+
+ 17
+ 17
+ UTF-8
+
+
+
\ No newline at end of file
diff --git a/prompto-lab-app/src/main/java/io/github/timemachinelab/Main.java b/prompto-lab-app/src/main/java/io/github/timemachinelab/Main.java
new file mode 100644
index 0000000..515ca47
--- /dev/null
+++ b/prompto-lab-app/src/main/java/io/github/timemachinelab/Main.java
@@ -0,0 +1,17 @@
+package io.github.timemachinelab;
+
+//TIP To Run code, press or
+// click the icon in the gutter.
+public class Main {
+ public static void main(String[] args) {
+ //TIP Press with your caret at the highlighted text
+ // to see how IntelliJ IDEA suggests fixing it.
+ System.out.printf("Hello and welcome!");
+
+ for (int i = 1; i <= 5; i++) {
+ //TIP Press to start debugging your code. We have set one breakpoint
+ // for you, but you can always add more by pressing .
+ System.out.println("i = " + i);
+ }
+ }
+}
\ No newline at end of file
diff --git a/prompto-lab-ui/ui.txt b/prompto-lab-ui/ui.txt
new file mode 100644
index 0000000..e69de29
diff --git a/src/main/java/io/github/timemachinelab/promptolab/PromptoLabApplication.java b/src/main/java/io/github/timemachinelab/promptolab/PromptoLabApplication.java
deleted file mode 100644
index 88ce096..0000000
--- a/src/main/java/io/github/timemachinelab/promptolab/PromptoLabApplication.java
+++ /dev/null
@@ -1,13 +0,0 @@
-package io.github.timemachinelab.promptolab;
-
-import org.springframework.boot.SpringApplication;
-import org.springframework.boot.autoconfigure.SpringBootApplication;
-
-@SpringBootApplication
-public class PromptoLabApplication {
-
- public static void main(String[] args) {
- SpringApplication.run(PromptoLabApplication.class, args);
- }
-
-}