Or the equivalent for your os package manager
REPLACEME
with your new postgres password.Ensure that your redis version is > 5.0. Check withredis-server -v
.
conf/.env
It contains all the settings. For now, we just need to set database password and enabled cryptos.bitcart
repo directory:If you want to run a specific coin on a test network or change other environment settings you can update the.env
file in the bitcartconf/
directory​
8000
.5000-500X
3000
4000
.http://127.0.0.1:3000/
http://127.0.0.1:4000/
http://127.0.0.1:8000/
Add DNS records for your server names to point to your VM's ip
http2
in your nginx configuration if you want.3000
, 4000
and 8000
. Using ufw
as an example:yarn
is listening on localhost127.0.0.1
by default and you won't be able to access it over the internet unless you reverse proxy it withnginx
. If you want to expose it without reverse proxy, use the environment variable:NUXT_HOST=0.0.0.0
to listen on all interfaces.
Note: The above is the minimum to make it work and not a production grade solution. We still recommend to use docker deployment unless you really know what you're doing.
http://my-bitcart-admin-ip:3000/
http://my-bitcart-store-ip:4000/
http://my-bitcart-store-ip:8000/