You can deploy it to any cloud service which can handle docker images.
Popular services are AWS, GCP, Azure or Digital Ocean
We recommend also using a PostgreSQL database service and do backups of the database and especially wallet data.
-
Create the
.env
file with the correct values or inject the values to docker (migrate the database and optionally seed it first) -
Build:
docker build -t masumi-registry-service .
-
Run
docker run -d -p 3000:3000 masumi-registry-service
Replacing
masumi-registry-service
with the image name, and3000:3000
with thehost:container
ports to publish.
Otherwise you can run the project locally by following the Quickstart guide in the README