-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
23 changed files
with
555 additions
and
414 deletions.
There are no files selected for viewing
4 changes: 2 additions & 2 deletions
4
ballcat-codegen-backend/src/main/resources/application-dev.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 0 additions & 5 deletions
5
ballcat-codegen-backend/src/main/resources/application-prod.yml
This file was deleted.
Oops, something went wrong.
223 changes: 178 additions & 45 deletions
223
ballcat-codegen-backend/src/main/resources/db/migration/V1.0.0.sql
Large diffs are not rendered by default.
Oops, something went wrong.
184 changes: 184 additions & 0 deletions
184
ballcat-codegen-backend/src/main/resources/db/migration/V1.0.1.sql
Large diffs are not rendered by default.
Oops, something went wrong.
124 changes: 0 additions & 124 deletions
124
ballcat-codegen-backend/src/main/resources/db/migration/V1.1.0.sql
This file was deleted.
Oops, something went wrong.
32 changes: 0 additions & 32 deletions
32
ballcat-codegen-backend/src/main/resources/db/migration/V1.2.0.sql
This file was deleted.
Oops, something went wrong.
12 changes: 0 additions & 12 deletions
12
ballcat-codegen-backend/src/main/resources/db/migration/V1.3.0.sql
This file was deleted.
Oops, something went wrong.
5 changes: 0 additions & 5 deletions
5
ballcat-codegen-backend/src/main/resources/db/migration/V1.3.1.sql
This file was deleted.
Oops, something went wrong.
4 changes: 0 additions & 4 deletions
4
ballcat-codegen-backend/src/main/resources/db/migration/V1.4.0.sql
This file was deleted.
Oops, something went wrong.
5 changes: 0 additions & 5 deletions
5
ballcat-codegen-backend/src/main/resources/db/migration/V1.4.1.sql
This file was deleted.
Oops, something went wrong.
2 changes: 0 additions & 2 deletions
2
ballcat-codegen-backend/src/main/resources/db/migration/V1.4.2.sql
This file was deleted.
Oops, something went wrong.
14 changes: 9 additions & 5 deletions
14
ballcat-codegen-backend/src/main/resources/docker/Dockerfile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,15 @@ | ||
# syntax=docker/dockerfile:1 | ||
# https://docs.docker.com/language/java/build-images/ | ||
# 使用官方的 Eclipse Temurin 作为基础镜像 | ||
FROM eclipse-temurin:11-jdk-jammy | ||
|
||
MAINTAINER <[email protected]>mobaijun | ||
# 设置维护者信息 | ||
LABEL maintainer="mobaijun <[email protected]>" | ||
|
||
VOLUME /usr/local/codegen | ||
# 设置工作目录 | ||
WORKDIR /usr/local/codegen | ||
|
||
ADD ballcat-codegen.jar ballcat-codegen.jar | ||
# 复制 jar 文件到工作目录 | ||
COPY april-codegen.jar . | ||
|
||
ENTRYPOINT ["java","-Xms256m","-Xmx512m","-XX:PermSize=128M","-XX:MaxPermSize=256M","-jar","ballcat-codegen.jar"] | ||
# 设置 JVM 参数并指定要执行的 jar 文件 | ||
ENTRYPOINT ["java", "-Xms256m", "-Xmx512m", "-XX:+UseContainerSupport", "-jar", "april-codegen.jar"] |
34 changes: 0 additions & 34 deletions
34
ballcat-codegen-backend/src/main/resources/docker/docker-compose.yml
This file was deleted.
Oops, something went wrong.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
<template> | ||
<div style="text-align: center">BallCat CodeGen 2022 Created By Hccake</div> | ||
<div style="text-align: center">April CodeGen 2022 Created By April Team</div> | ||
</template> |
Oops, something went wrong.