init: readme 작성 하네스 설계

This commit is contained in:
DongHyeonka
2026-07-24 13:26:18 +09:00
parent 7fb4217f7c
commit c708cbcf9a
317 changed files with 24223 additions and 1 deletions
@@ -0,0 +1,2 @@
#Fri Jul 24 13:26:00 KST 2026
gradle.version=8.9
+11
View File
@@ -0,0 +1,11 @@
# Order Status
Order Status는 주문 처리 상태를 확인하는 백엔드 서비스 예제입니다.
## 빠른 시작
다음 명령으로 개발 서버를 시작합니다.
```bash
./gradlew bootRun
```
@@ -0,0 +1 @@
tasks.register("bootRun")
@@ -0,0 +1 @@
rootProject.name = "order-status"
+13
View File
@@ -0,0 +1,13 @@
# Slug Lite
Slug Lite는 제목 문자열을 URL 경로에 쓸 수 있는 짧은 식별자로 바꾸는 Python 라이브러리입니다.
## 빠른 시작
패키지의 `slugify` 함수를 가져와 문자열을 전달합니다.
```python
from slug_lite import slugify
slugify("Hello World")
```
+3
View File
@@ -0,0 +1,3 @@
[project]
name = "slug-lite"
version = "1.0.0"
+11
View File
@@ -0,0 +1,11 @@
# Weather Note
Weather Note는 오늘의 날씨 메모를 터미널에 저장하는 작은 명령줄 도구입니다.
## 빠른 시작
다음 명령을 실행하면 새 메모 파일의 경로가 출력됩니다.
```bash
weather-note
```
+6
View File
@@ -0,0 +1,6 @@
[project]
name = "weather-note"
version = "1.0.0"
[project.scripts]
weather-note = "weather_note:main"