Skip to content

Commit

Permalink
TG
Browse files Browse the repository at this point in the history
  • Loading branch information
kuyeol committed Feb 26, 2025
1 parent dbad272 commit c473bef
Show file tree
Hide file tree
Showing 4 changed files with 91 additions and 32 deletions.
60 changes: 31 additions & 29 deletions Writerside/cfg/buildprofiles.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,49 +2,51 @@
<!DOCTYPE buildprofiles SYSTEM "https://resources.jetbrains.com/writerside/1.0/build-profiles.dtd">
<buildprofiles xsi:noNamespaceSchemaLocation="https://resources.jetbrains.com/writerside/1.0/build-profiles.xsd"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<sitemap priority="0.35" change-frequency="monthly"/>
<sitemap priority="0.35" change-frequency="monthly"/>
<variables>
<web-root>https://kuyeol.github.io/Document</web-root>
<web-root>https://kuyeol.github.io/Document</web-root>
<product-web-url>https://kuyeol.github.io/Document</product-web-url>
<download-page>https://github.com/kuyeol/Document/edit/master/Writerside/topics/</download-page>
<download-title>Edit</download-title>
<showDownloadButton>true</showDownloadButton>
<primary-color>strawberry</primary-color>
<custom-favicons>https://www.jetbrains.com/icon-512.png</custom-favicons>
<color-preset>vivid</color-preset>
<content-max-width>1900</content-max-width>
<product-web-url>https://kuyeol.github.io/Document/starter.html</product-web-url>
<algolia-id>GZ7D9RY8R4</algolia-id>
<algolia-index>MY_INDEX</algolia-index>
<algolia-api-key>5e08191207a7445eb8291c3a259c7658</algolia-api-key>
<algolia-show-logo>true</algolia-show-logo>
<sitemap priority="0.35" change-frequency="monthly"/>
<contribute-url> https://github.com/kuyeol/Document/edit/master/Writerside/ </contribute-url>
<enable-contribution>true</enable-contribution>
<custom-favicons>icon16.svg,icon32.svg,icon96.svg,icon300.svg,icon500.svg</custom-favicons>
<resizable-sidebar>true</resizable-sidebar>
<offline-docs>true</offline-docs>
<generate-canonicals>true</generate-canonicals>
<noindex-content>false</noindex-content>
<product-web-url>https://kuyeol.github.io/Document</product-web-url>
<color-preset>vivid</color-preset>
<content-max-width>1900</content-max-width>

<contribute-url>https://github.com/kuyeol/Document/edit/master/Writerside/</contribute-url>
<!-- <custom-favicons>note500.svg,note32.svg</custom-favicons>-->
<resizable-sidebar>true</resizable-sidebar>
<offline-docs>true</offline-docs>
<generate-canonicals>true</generate-canonicals>

<algolia-id>GZ7D9RY8R4</algolia-id>
<algolia-index>MY_INDEX</algolia-index>
<algolia-api-key>5e08191207a7445eb8291c3a259c7658</algolia-api-key>
<algolia-show-logo>true</algolia-show-logo>
<enable-contribution>true</enable-contribution>

</variables>
<footer>

<footer>
<link href="https://github.com/kuyeol/Document/issues">Issue tracker</link>
<link href="mailto:[email protected]">Contact us</link>
<social type="email" href="[email protected]">Send us an email</social>
<social type="email" href="[email protected]">Send us an email</social>
<copyright>Ung_Yeol</copyright>
</footer>




<build-profile instance="in">

<variables>

<noindex-content>false</noindex-content>
<primary-color>strawberry</primary-color>
<custom-css>custom.css</custom-css>









</variables>
</build-profile>

Expand Down
51 changes: 51 additions & 0 deletions Writerside/cfg/static/custom.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
:root {

}

/* make the border for images transparent with a 30px radius */
.article__img {
border-radius: 30px !important;
border: none;
}



.title__content {
font-family: "Comic Sans MS";
font-weight: 600;
}

.article__p {
font-family: "Monaco";
font-weight:500
}


.page-footer .page-info {
display: flex;
flex-direction: column; /* 기본적으로 세로 배치 (모바일) */
align-items: flex-start; /* 왼쪽 정렬 */
gap: 10px;
}

@media (min-width: 768px) { /* 화면 너비가 768px 이상일 때 (태블릿/데스크탑) */
.page-footer .page-info {
flex-direction: row; /* 가로 배치 */
justify-content: space-between; /* 양쪽 끝 정렬 */
}
}

/* (2) */
.footer-container {
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 10px;
}

@media (min-width: 768px) {
.footer-container {
flex-direction: row;
justify-content: space-between;
}
}
File renamed without changes
12 changes: 9 additions & 3 deletions Writerside/topics/CreateEntity.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,15 @@ private Type id;

## @Entity
- 프로퍼티에 구성 된 데이터베이스에 인스턴스에 해당 하는 테이블 생성
- spring.jpa.hibernate.ddl-auto =
- create-drop -> 생성과 삭제
- create -> 생성
<procedure>
<step> `spring.jpa.hibernate.ddl-auto`
</step>


</procedure>

- = `create-drop` => 생성과 삭제
- = `create` => 생성
- 데이터베이스 테이블과 클래스의 인스턴스를 매핑
- 데이터베이스의 레코드를 클래스의 인스턴스로 표현

Expand Down

0 comments on commit c473bef

Please sign in to comment.