SDChain / sdchain-wallet-web

sdchain-wallet-web

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

sdchain-wallet-web

A platform for users to manage wallet

Run

Engineering Configuration Changes

Modify the corresponding js file: js/base.js

var baseurl = 'http://192.168.0.24:8080/sdchainWallet-webservice/resSDnWalt';

Start the service

This project is a pure front-end project and can be run with nginx or other static servers. For example, use nginx to modify the following configuration: Modify the file nginx.conf

http {
 server {
 location / {
            # Actual project path
            root /usr/local/sdchain-wallet-web;
            # Home mapping html
            index index.html index.htm;
        }
   }
}

Access address: http://localhost:80/

About

sdchain-wallet-web

License:GNU General Public License v3.0


Languages

Language:JavaScript 54.7%Language:HTML 36.5%Language:CSS 8.9%