From ab1cb893fc0a289fb7de06c1a1c1f0b273374999 Mon Sep 17 00:00:00 2001
From: geniusay <969025903@qq.com>
Date: Tue, 12 Aug 2025 21:49:23 +0800
Subject: [PATCH] =?UTF-8?q?=E9=A1=B9=E7=9B=AE=E7=BB=93=E6=9E=84=E9=87=8D?=
=?UTF-8?q?=E6=9E=84?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
pom.xml | 73 -------------------
Dockerfile => prompto-lab-app/Dockerfile | 0
prompto-lab-app/pom.xml | 20 +++++
.../java/io/github/timemachinelab/Main.java | 17 +++++
prompto-lab-ui/ui.txt | 0
.../promptolab/PromptoLabApplication.java | 13 ----
6 files changed, 37 insertions(+), 86 deletions(-)
delete mode 100644 pom.xml
rename Dockerfile => prompto-lab-app/Dockerfile (100%)
create mode 100644 prompto-lab-app/pom.xml
create mode 100644 prompto-lab-app/src/main/java/io/github/timemachinelab/Main.java
create mode 100644 prompto-lab-ui/ui.txt
delete mode 100644 src/main/java/io/github/timemachinelab/promptolab/PromptoLabApplication.java
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);
- }
-
-}