diff --git a/README.md b/README.md index fe22f89dd..694937e3a 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,12 @@ yarn install yarn serve ``` -> You will also need to run the [Nimiq Hub](https://github.com/nimiq/hub#contribute) and [Nimiq Keyguard](https://github.com/nimiq/keyguard/#development) in development, too. +If you need to interact with a real account and data, then you will also need to run the [Nimiq Hub](https://github.com/nimiq/hub#contribute) and [Nimiq Keyguard](https://github.com/nimiq/keyguard/#development) in development, too. + +For demo mode with simulated accounts and transactions, use: +``` +yarn serve:demo +``` ### Compiles and minifies for production ``` diff --git a/package.json b/package.json index 88e6965e2..2ba8c27c2 100644 --- a/package.json +++ b/package.json @@ -6,7 +6,10 @@ "packageManager": "yarn@1.22.22", "scripts": { "serve": "yarn pre && yarn vue-cli-service serve --port 8081", + "serve:demo": "yarn pre && build=demo yarn vue-cli-service serve --port 8081", "build": "yarn pre && yarn vue-cli-service build", + "build:demo": "yarn pre && build=demo NODE_ENV=production yarn vue-cli-service build", + "build:demo-production": "yarn pre && build=demo-production NODE_ENV=production yarn vue-cli-service build", "lint": "vue-cli-service lint --no-fix", "lint:fix": "vue-cli-service lint", "build:bitcoinjs": "yarn --silent browserify bitcoinjs-parts.js -p common-shakeify -s BitcoinJS | yarn terser --compress --mangle --source-map --output public/bitcoin/BitcoinJS.min.js", diff --git a/src/components/icons/ThreeLoginFiles.vue b/src/components/icons/ThreeLoginFiles.vue new file mode 100644 index 000000000..a503269a5 --- /dev/null +++ b/src/components/icons/ThreeLoginFiles.vue @@ -0,0 +1,148 @@ + diff --git a/src/components/layouts/Sidebar.vue b/src/components/layouts/Sidebar.vue index 96bdb272b..7ae234d01 100644 --- a/src/components/layouts/Sidebar.vue +++ b/src/components/layouts/Sidebar.vue @@ -1,6 +1,6 @@