Kasisto consists of an app running on a mobile phone or tablet and a server to which the app connects to listen for incoming payments.
Kasisto is implemented as a Progressive Web App. It's targeted to run on any modern mobile browser, including Chrome for Android, Firefox, Safari iOS and Edge. It can be added to the home screen and will run without showing the browser's address bar if done so.
All payment details and configuration settings are stored locally in the app, the server is accessed in a read-only way to listen for incoming transactions.
Clone, install dependencies and run yarn
to install dependencies. (npm install
should work just fine).
To start a local server, run yarn start
.
Go to http://localhost:8000/
- Set shop name
- Set
Wallet URL
to https://www.karbo.club/api and karbo address must be generate on https://www.karbo.club/ - Set shop logo
- Choose your currency
wait for transaction confirmation
In "History" you can see Payment Details
yarn run dist
...
server {
listen 8000;
server_name localhost;
expires -1;
if_modified_since exact;
access_log logs/host.access.log;
location / {
root G:/karbo/kasisto/dist/ ;
}
}
...