kmp-ledger

(★ 14)

Kotlin Multiplatform (Android + iOS + Desktop) reference app demonstrating clean architecture, convention plugins, Room 3, Navigation 3, and Koin annotation DI with Compose Multiplatform.

파일 탐색기

  • .gitattributes
  • .gitignore
  • .mcp.json
  • build.gradle.kts
  • CHANGELOG.md
  • CLAUDE.md
  • CODE_OF_CONDUCT.md
  • CONTRIBUTING.md
  • gradle.properties
  • gradlew
  • gradlew.bat
  • LICENSE
  • README.md
  • settings.gradle.kts

# CDN으로 사용하기

jsDelivr

jsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.

명령어 용어집

이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.

🔍

interface

설명 보기 ▼

인터페이스를 관리.
설정 모드에서 사용함.
더 많은 정보: <https://www.cisco.com/c/en/us/td/docs/ios-xml/ios/interface/command/ir-cr-book/ir-i1.html>.

interface vlan {{1}}

VLAN 인터페이스 설정:

{{no shutdown|shutdown}}

인터페이스 활성화 또는 비활성화 (interface 명령 내부에서 실행):

🔍

base64

설명 보기 ▼

파일 또는 표준 입력을 Base64와 표준 출력으로 인코딩하거나 디코딩함.
더 많은 정보: <https://manned.org/base64>.

base64 {{path/to/file}}

파일 인코딩:

base64 {{[-i|--input]}} {{path/to/file}}

파일을 인코딩하여 `stdout`으로 출력:

base64 {{[-i|--input]}} {{path/to/file}}

파일을 `stdout`으로 인코딩:

🔍

git push

설명 보기 ▼

Push commits to a remote repository.

git push

Send local changes in the current branch to its default remote counterpart:

git push {{remote_name}} {{local_branch}}

Send changes from a specific local branch to its remote counterpart:

git push {{[-u|--set-upstream]}} {{remote_name}} {{local_branch}}

Send changes from a specific local branch to its remote counterpart, and set the remote one as the default push/pull target of the local one:

🔍

git tag

설명 보기 ▼

Create, list, delete, or verify tags.
A tag is a static reference to a commit.

git tag

List all tags:

git tag {{tag_name}}

Create a tag with the given name pointing to the current commit:

git tag {{tag_name}} {{commit}}

Create a tag with the given name pointing to a given commit:

🔍

keytool

설명 보기 ▼

Java에 포함된 인증서 관리 도구.
더 많은 정보: <https://docs.oracle.com/en/java/javase/25/docs/specs/man/keytool.html>.

keytool -genkeypair -v -keystore {{path/to/file.keystore}} -alias {{key_name}}

키스토어 생성:

keytool -storepasswd -keystore {{path/to/file.keystore}}

키스토어 비밀번호 변경:

keytool -keypasswd -alias {{key_name}} -keystore {{path/to/file.keystore}}

특정 키스토어 내 키의 비밀번호 변경:

🔍

expect

설명 보기 ▼

사용자 입력이 필요한 다른 프로그램과 상호작용하는 스크립트 실행기.
더 많은 정보: <https://manned.org/expect>.

expect {{path/to/file}}

파일에서 expect 스크립트 실행:

expect -c "{{commands}}"

지정된 expect 스크립트 실행:

expect -i

대화형 REPL 모드로 진입 (`exit` 또는 `<Ctrl d>`로 종료):

🔍

Module

설명 보기 ▼

사용자의 환경을 module 명령어로 수정.
더 많은 정보: <https://lmod.readthedocs.io/en/latest/010_user.html>.

module avail

사용 가능한 모듈 표시:

module avail {{module_name}}

이름으로 모듈 검색:

module load {{module_name}}

모듈 로드:

# 프로젝트 배지

// repository documentation