Giter Site home page Giter Site logo

nuivall / proxeus-core Goto Github PK

View Code? Open in Web Editor NEW

This project forked from proxeusapp/proxeus-core

0.0 0.0 0.0 7.44 MB

License: GNU General Public License v3.0

Makefile 0.29% Dockerfile 0.10% Shell 0.07% Go 28.63% JavaScript 34.45% HTML 0.08% Vue 23.49% CSS 12.88%

proxeus-core's Introduction

Proxeus


Main repository of the proxeus platform.

Proxeus combines a powerful document automation tool with the wide-ranging blockchain functionalities, enabling users to digitize and monetize their IP.

Source Code

You can access the source code of this application on the Proxeus GitHub repository.

Quick Start with docker

The quickest way to try Proxeus is to use docker-compose.

Install docker and docker-compose

  1. Install Docker Engine
  2. Install docker-compose

Get API Keys for Infura and SparkPost

The Proxeus platform depends on Infura and SparkPost for Ethereum and email integration respectively.

Please create an account on those platform and get an API Keys.

Proxeus Demo Ethereum Smart Contract

For your convenience, a demo smart contract is deployed on the Ropsten network at the following address:

0x1d3e5c81bf4bc60d41a8fbbb3d1bae6f03a75f71

Create a docker-compose.yml file

Note: Please make sure that you always pull Docker images from the official proxeus DockerHub repository and that you are using the latest version.

User the example below as your docker-compose.yml file:

---
version: '3.7'

networks:
  xes-platform-network:
    name: xes-platform-network

services:
  platform:
    image: proxeus/proxeus-core:latest
    container_name: xes-platform
    depends_on:
      - document-service
    networks:
      - xes-platform-network
    restart: unless-stopped
    environment:
      TZ: Europe/Zurich
      PROXEUS_PLATFORM_DOMAIN: "${PROXEUS_PLATFORM_DOMAIN:-http://xes-platform:1323}"
      PROXEUS_DOCUMENT_SERVICE_URL: "http://document-service:2115/"
      PROXEUS_BLOCKCHAIN_CONTRACT_ADDRESS: "${PROXEUS_BLOCKCHAIN_CONTRACT_ADDRESS}"
      PROXEUS_INFURA_API_KEY: "${PROXEUS_INFURA_API_KEY}"
      PROXEUS_SPARKPOST_API_KEY: "${PROXEUS_SPARKPOST_API_KEY}"
      PROXEUS_EMAIL_FROM: "${PROXEUS_EMAIL_FROM:[email protected]}"
      PROXEUS_AIRDROP_WALLET_FILE: "${PROXEUS_AIRDROP_WALLET_FILE:-/root/.proxeus/settings/airdropwallet.json}"
      PROXEUS_AIRDROP_WALLET_KEY: "${PROXEUS_AIRDROP_WALLET_KEY:-/root/.proxeus/settings/airdropwallet.key}"
      PROXEUS_DATABASE_ENGINE: "${PROXEUS_DATABASE_ENGINE:-storm}"
      PROXEUS_DATABASE_URI: "${PROXEUS_DATABASE_URI:-mongodb://root:root@mongo:27017}"
      PROXEUS_TEST_MODE: "${PROXEUS_TEST_MODE:-false}"
    ports:
      - "1323:1323"
    volumes:
      - ${PROXEUS_DATA_DIR:-./data}/proxeus-platform/data:/data/hosted
      - ${PROXEUS_DATA_DIR:-./data}/proxeus-platform/settings:/root/.proxeus/settings

  document-service:
    image: proxeus/document-service:latest
    container_name: xes_document_service
    networks:
      - xes-platform-network
    restart: unless-stopped
    environment:
      TZ: Europe/Zurich
    ports:
      - "2115:2115"
    volumes:
      - ${PROXEUS_DATA_DIR:-./data}/document-service/logs:/document-service/logs
      - ${PROXEUS_DATA_DIR:-./data}/document-service/fonts:/document-service/fonts

Start Proxeus

Run the following command in the directory containing your docker-compose.yml file (Linux and OSX):

export PROXEUS_INFURA_API_KEY=<Your Infura API key>
export PROXEUS_SPARKPOST_API_KEY=<Your SparkPost API Key>
export PROXEUS_BLOCKCHAIN_CONTRACT_ADDRESS=0x1d3e5c81bf4bc60d41a8fbbb3d1bae6f03a75f71
export PROXEUS_ALLOW_HTTP=true
docker-compose up 

Proxeus should be available at http://localhost:1323

The next step is to configure your instance for the first time.

Build Proxeus Platform from the source code

If you are a developer and want to build the project form the source code follow the instructions in Build all

Developer manual

Please read the Developer Manual to learn more about the Proxeus platform.

User manual

The user manual is available here: User Manual

Contributing

As an open-source project, we welcome any kind of community involvement, whether that is by contributing code, reporting issues or engaging in insightful discussions. Especially, we are looking forward to receiving contributions for external workflow nodes.

See the Contributing section for instructions on how to contribute.

Security Issues

If you find a vulnerability that may affect live or testnet deployments please send your report privately to [email protected]. Please DO NOT file a public issue.

Misc

XES-Payment

For more info check the XES-Payment Readme.

Smart contracts & Solidity

For more info check the Smart contracts & Solidity Readme.

License

Licensed under the GNU GENERAL PUBLIC LICENSE. You may read a copy of the License here

Acknowledgements

Like so many projects, this effort has roots in many places.

The list can be found here

proxeus-core's People

Contributors

alexblockfactory avatar davidmatter avatar emeka avatar ianaz avatar lukarth avatar nuivall avatar proxeus-github avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.