-
Notifications
You must be signed in to change notification settings - Fork 5
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
6 changed files
with
119 additions
and
9 deletions.
There are no files selected for viewing
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
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
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
2 changes: 1 addition & 1 deletion
2
...rchetype-simple/src/main/resources/archetype-resources/src/main/resources/application.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
spring: | ||
application: | ||
name: @project.name@ | ||
name: @appName@ | ||
|
||
datasource: | ||
type: com.zaxxer.hikari.HikariDataSource | ||
|
110 changes: 110 additions & 0 deletions
110
...hetype-simple/src/main/resources/archetype-resources/src/main/resources/static/index.html
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 |
---|---|---|
@@ -0,0 +1,110 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Welcome to Shoulder</title> | ||
<style> | ||
body { | ||
font-family: Arial, sans-serif; | ||
margin: 0; | ||
padding: 0; | ||
background: #d7e7e7; | ||
color: #333; | ||
} | ||
.container { | ||
width: 80%; | ||
margin: auto; | ||
overflow: hidden; | ||
} | ||
header { | ||
background: #d5dd44; | ||
color: #000; | ||
padding: 20px; | ||
text-align: center; | ||
} | ||
header h1 { | ||
margin: 0; | ||
} | ||
nav { | ||
background: #333; | ||
color: #fff; | ||
padding: 10px 0; | ||
text-align: center; | ||
} | ||
nav a { | ||
color: #fff; | ||
text-decoration: none; | ||
padding: 10px 15px; | ||
display: inline-block; | ||
} | ||
nav a:hover { | ||
background: #555; | ||
} | ||
.main-content { | ||
padding: 20px; | ||
background: #fff; | ||
margin-top: 20px; | ||
} | ||
footer { | ||
background: #333; | ||
color: #fff; | ||
text-align: center; | ||
padding: 10px; | ||
position: fixed; | ||
bottom: 0; | ||
width: 100%; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<header> | ||
<div class="container"> | ||
<h1>Shoulder - Simplifying Development</h1> | ||
</div> | ||
</header> | ||
|
||
<nav> | ||
<div class="container"> | ||
<a target="_blank" href="https://doc.itlym.cn/shoulder.html">Features & Documentation</a> | ||
<a target="_blank" href="https://doc.itlym.cn/shoulder_changelog.html">Version Changes</a> | ||
<a target="_blank" href="https://github.com/ChinaLym/shoulder-framework/">GitHub</a> | ||
<a target="_blank" href="https://gitee.com/ChinaLym/shoulder-framework/">Gitee</a> | ||
<a target="_blank" href="https://gitcode.com/ChinaLym/shoulder-framework/">GitCode</a> | ||
</div> | ||
</nav> | ||
|
||
<div class="main-content container"> | ||
<section id="features"> | ||
<h2>Features</h2> | ||
<p><a target="_blank" href="https://doc.itlym.cn/shoulder.html">Discover the core features that make coding happier😀.</a></p> | ||
</section> | ||
|
||
<section id="docs"> | ||
<h2>Documentation</h2> | ||
<p><a target="_blank" href="https://doc.itlym.cn/shoulder_start.html">Find comprehensive guides and tutorials to get started.🚀.</a></p> | ||
</section> | ||
|
||
<section id="community"> | ||
<h2>Community</h2> | ||
<p>Share ideas and get support in 💬 | ||
<a target="_blank" href="https://github.com/ChinaLym/shoulder-framework/">GitHub</a> or | ||
<a target="_blank" href="https://gitee.com/ChinaLym/shoulder-framework/">Gitee</a> or | ||
<a target="_blank" href="https://gitcode.com/ChinaLym/shoulder-framework/">GitCode</a> | ||
</p> | ||
</section> | ||
|
||
<section id="contact"> | ||
<h2>Contact Author</h2> | ||
<p><a href="mailto:cn_lym@foxmail.com">Send a email to auth and get feedback / job. 📧</a></p> | ||
</section> | ||
</div> | ||
|
||
<footer> | ||
<div class="container"> | ||
<p>© 2024 Shoulder. All rights reserved.</p> | ||
</div> | ||
</footer> | ||
<script src="https://hishoulder.itlym.cn/showDemo/v1.0.0"></script> | ||
</body> | ||
</html> |
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