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.
File Explorer
- 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
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
git checkout
View Details ▼
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
View Details ▼
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
View Details ▼
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
View Details ▼
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
View Details ▼
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
View Details ▼
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
View Details ▼
next
React framework that uses server-side rendering for building optimized web applications.
next dev
Start the current application in development mode:
next dev {{[-p|--port]}} {{port}}
Start the current application and listen on a specific port:
next build
Build the current application optimized for production:
play
View Details ▼
play
Audio player of SoX - Sound eXchange.
Plays any audio, with audio formats identified by the extension.
play {{path/to/audio_file}}
Play the given audio file:
play {{path/to/audio_file1 path/to/audio_file2 ...}}
Play the given audio files:
play {{path/to/audio_file}} speed 2.0
Play the given audio at twice the speed:
apt install
View Details ▼
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:
