vsys-host / shkeeper.io

SHKeeper is a self-hosted and open-source cryptocurrency gateway payment processor. It's integrate with popular CMS, any e-commerce, your own code or product
https://shkeeper.io/
GNU General Public License v3.0
247 stars 63 forks source link

how to set up this tool without using docker? #22

Closed seetimee closed 1 year ago

seetimee commented 1 year ago

I just wanna deploy it on win10

bulhiCzar commented 1 year ago

its not real, u need use kubernetes

you can write to the guys in tech support, they will help you 1) fill form in site https://shkeeper.io/ 2) contcat email support@vsys.host

seetimee commented 1 year ago

its not real, u need use kubernetes

you can write to the guys in tech support, they will help you

  1. fill form in site https://shkeeper.io/
  2. contcat email

I have a centos server,but deploy kubernetes took a lot of time,It's hard for a rookie

bulhiCzar commented 1 year ago

unfortunately kubernetes is the only way to deploy the application

seetimee commented 1 year ago

unfortunately kubernetes is the only way to deploy the application

Thanks a lot for your reply,bro

dmytro-samoylenko commented 1 year ago

Hello,

I have a centos server,but deploy kubernetes took a lot of time,It's hard for a rookie

Its not hard at all to setup lightweight kubernetes distro (I recommend k3s) on a fresh VPS. Here is an example how to setup k3s and shkeeper on Ubuntu 22 VPS:

curl -sfL https://get.k3s.io | sh -
mkdir /root/.kube && ln -s /etc/rancher/k3s/k3s.yaml /root/.kube/config
curl https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 | bash
helm repo add vsys-host https://vsys-host.github.io/helm-charts
helm install my-shkeeper vsys-host/shkeeper

After all pods are deployed, open http://:5000/

If you interested in installation and integration help please check our solution: https://vsys.host/shkeeper

seetimee commented 1 year ago

Hello,

I have a centos server,but deploy kubernetes took a lot of time,It's hard for a rookie

Its not hard at all to setup lightweight kubernetes distro (I recommend k3s) on a fresh VPS. Here is an example how to setup k3s and shkeeper on Ubuntu 22 VPS:

curl -sfL https://get.k3s.io | sh -
mkdir /root/.kube && ln -s /etc/rancher/k3s/k3s.yaml /root/.kube/config
curl https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 | bash
helm repo add vsys-host https://vsys-host.github.io/helm-charts
helm install my-shkeeper vsys-host/shkeeper

After all pods are deployed, open http://:5000/

If you interested in installation and integration help please check our solution: https://vsys.host/shkeeper

I worked.Thanks for your suggestion.