Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/joticajulian/paymentsystem
https://github.com/joticajulian/paymentsystem
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/joticajulian/paymentsystem
- Owner: joticajulian
- License: gpl-3.0
- Created: 2019-05-14T07:00:21.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-05-14T07:05:38.000Z (over 5 years ago)
- Last Synced: 2024-10-18T07:24:19.807Z (3 months ago)
- Language: Vue
- Size: 1020 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Pulsar-UI
> Pulsar-UI is a Vue.js web interface for interacting with the Pulsar Blockchain.This repository contains all the changes to support the European Financial Transparency Gateway (EFTG) pilot, the first pan-European Blockchain. Currently serving the OAM and Investor pages.
## Installation
#### Docker
We recommend docker to use Pulsar. An image is already available on dockerhub
To bring up a running container it's as simple as this:
```
docker run -it -p 80:80 eftg/pulsar
```If you would like to modify, build, and run Pulsar using docker, it's as simple as pulling in the github repo and issuing one command to build it, like this:
```
git clone https://github.com/pablomat/pulsar.git
cd pulsar
docker build -t "myname/mypulsar:mybranch" .
docker run -it -p 80:80 myname/mypulsar:mybranch
```## Building from source without Docker
#### Config
Change the configuration file `src/config.js` with the symbols of the blockchain. (By default EFTG values are used)
Additional values are needed like an RPC node address (e.g.: https://api.eftg.eu), an [imagehoster](https://github.com/steemit/imagehoster), an elastic search API address and a CDN as well.
#### Install dependencies & build
``` bash
# install dependencies
npm install# serve with hot reload at localhost:8080
npm run serve# build for production with minification
npm run build
```For a detailed explanation on how things work, check out the [guide](http://vuejs-templates.github.io/webpack/) and [docs for vue-loader](http://vuejs.github.io/vue-loader).