Nine Chronicles Blockchain Explorer web client project
This project is a frontend project. You need to set up the backend first.
https://github.com/planetarium/9cscan-cloud
Node v16.5
git clone https://github.com/planetarium/9cscan.com
cd 9cscan.com
npm install
You need to create the files below.
.config
.env.localhost
.env.production
.config
{
# Required. AWS Region
"region": "",
# Required. AWS Credentials to upload s3 bucket
"credentials": {
"accessKeyId": "",
"secretAccessKey": ""
},
"s3WebBucketName": ""
}
.env.localhost , .env.production
VUE_APP_MODE= [DEVEL | PRODUCTION]
VUE_APP_API_HOST=
VUE_APP_WS_ENDPOINT=
VUE_APP_9C_ASSET_HOST=[S3 WEB ENDPOINT]
The above properties can be found in the 9cscan-cloud/.deploy
file.
grunt serve
grunt deploy
Apache 2.0