wakupi
WhatsApp desktop client with AI assistant, universal QRIS payments for all Indonesian e-wallets, and remote desktop control perfect for merchants and power users.
파일 탐색기
- release.yml
- Info.dev.plist
- Info.plist
- project.nsi
- wails_tools.nsh
- icon.ico
- info.json
- wails.exe.manifest
- appicon.png
- make_icon.py
- README.md
- wakupi-launcher.sh
- wakupi.desktop
- nunito-v16-latin-regular.woff2
- OFL.txt
- logo-universal.png
- PlaygroundChat.vue
- PlaygroundMarket.vue
- PlaygroundParams.vue
- PlaygroundSessions.vue
- PlaygroundView.vue
- SendToWhatsAppModal.vue
- AccountRail.vue
- AISettingsModal.vue
- ChatArea.vue
- ChatContextMenu.vue
- ChatList.vue
- CSBotSettingsModal.vue
- EmojiPicker.vue
- ForwardModal.vue
- GroupInfoPanel.vue
- ImageGenView.vue
- LoginModal.vue
- MarkdownContent.vue
- MediaPreview.vue
- MessageBubble.vue
- NewChatModal.vue
- ProfileEditor.vue
- QrisDashboard.vue
- QrisGenerator.vue
- QuickInvoice.vue
- SearchModal.vue
- SettingsModal.vue
- StarredPanel.vue
- StatusComposer.vue
- StatusPanel.vue
- StatusViewer.vue
- VoiceRecorder.vue
- markdown.ts
- qris.ts
- whatsappFormat.ts
- ai.ts
- chat.ts
- csbot.ts
- imagegen.ts
- market.ts
- playground.ts
- qris.ts
- settings.ts
- status.ts
- ui.ts
- index.ts
- App.vue
- main.ts
- style.css
- vite-env.d.ts
- App.d.ts
- App.js
- models.ts
- package.json
- runtime.d.ts
- runtime.js
- index.html
- package-lock.json
- package.json
- package.json.md5
- postcss.config.js
- README.md
- tailwind.config.js
- tsconfig.json
- tsconfig.node.json
- vite.config.ts
- image.go
- service.go
- stream.go
- bot.go
- market.go
- actions.go
- avatar.go
- manager.go
- messages.go
- send.go
- store.go
- test-gamapi.go
- test-gamapi.sh
- test-image-gen.go
- .gitignore
- app.go
- go.mod
- go.sum
- LICENSE
- main.go
- README.md
- wails.json
# CDN으로 사용하기
jsDelivrjsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.
명령어 용어집
이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.
git checkout
설명 보기 ▼
git checkout
Checkout a branch or paths to the working tree.
git checkout -b {{branch_name}}
Create and switch to a new branch:
git checkout -b {{branch_name}} {{reference}}
Create and switch to a new branch based on a specific reference (branch, remote/branch, tag are examples of valid references):
git checkout {{branch_name}}
Switch to an existing local branch:
git clone
설명 보기 ▼
git clone
Clone an existing repository.
git clone {{remote_repository_location}} {{path/to/directory}}
Clone an existing repository into a new directory (the default directory is the repository name):
git clone --recursive {{remote_repository_location}}
Clone an existing repository and its submodules:
git clone {{[-n|--no-checkout]}} {{remote_repository_location}}
Clone only the `.git` directory of an existing repository:
git commit
설명 보기 ▼
git commit
Commit files to the repository.
git commit
Open an editor to write a message and commit staged files to the repository:
git commit {{[-m|--message]}} "{{message}}"
Commit staged files to the repository with the specified message:
git commit {{[-F|--file]}} {{path/to/commit_message_file}}
Commit staged files with a message read from a file:
git push
설명 보기 ▼
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:
go install
설명 보기 ▼
go install
Compile and install packages named by the import paths.
go install
Compile and install the current package:
go install {{path/to/package}}
Compile and install a specific local package:
go install {{golang.org/x/tools/gopls}}@{{latest}}
Install the latest version of a program, ignoring `go.mod` in the current directory:
go run
설명 보기 ▼
go run
Compile and run Go code without saving a binary.
go run {{path/to/file.go}}
Run a Go file:
go run {{path/to/package}}
Run a main Go package:
next
설명 보기 ▼
next
서버사이드 렌더링을 사용하여 최적화된 웹 애플리케이션을 구축하는 React 프레임워크.
더 많은 정보: <https://nextjs.org/docs/app/api-reference/cli/next>.
next dev
현재 애플리케이션을 개발 모드로 시작:
next dev {{[-p|--port]}} {{port}}
현재 애플리케이션을 특정 포트에서 시작:
next build
프로덕션에 맞게 최적화된 애플리케이션 빌드:
play
설명 보기 ▼
play
SoX - Sound eXchange의 오디오 플레이어.
파일 확장자로 식별된 오디오 형식을 재생.
더 많은 정보: <https://manned.org/play>.
play {{path/to/audio_file}}
주어진 오디오 파일 재생:
play {{path/to/audio_file1 path/to/audio_file2 ...}}
주어진 여러 오디오 파일 재생:
play {{path/to/audio_file}} speed 2.0
주어진 오디오를 두 배 속도로 재생:
apt install
설명 보기 ▼
apt install
Install packages for Debian-based distributions.
sudo apt install {{package}}
Install a package, or update it to the latest version:
sudo apt install {{[-V|--verbose-versions]}} {{package}}
Display verbose package version information during installation or update:
