Web server for the GatherChain solution
622
Web server for the GatherChain solution.
Explore the docs »
Report Bug
·
Request Feature
GatherChain is the solution created for my Master Thesis: Tracing Responsibility in Evolution of Model's Life Cycle in Collaborative Projects in Education. In the paper, it is proposed a blockchain-based solution for version control of model-driven engineering artefacts. The goal is to facilitate collaboration in a multi-user area, like the education field, and track changes in a trusted and secure manner. This solution is based on using the Hyperledger Fabric Network to govern and regulate file version control functions among students and teachers. This repository is a part of the larger GatherChain solution.
The other GatherChain projects are:
This repository serves as the Web server for the blockchain solution. It acts as a middle-man between the final users and the VM hosting the blockchain network. The Docker image can be found at jalmeida1994/gatherchain-app.
The web server is built with:
The web app is used automatically by the GatherChain ARM Template. If you want to deploy this web app in your environment
If you want to build the Docker image on premises and use it as you own, you'll need:
If the default installation is followed, using Azure as the cloud provider, you don't need to worry about this repository. The ARM template can be found in the repository GatherChain ARM Template.
For more information, please refer to the Documentation
If you want to build the Docker image on premises and use it as you own, follow the next steps:
Clone the repo
git clone https://github.com/Jalmeida1994/GatherChain-Web-Server.git
The server hosting the web app needs to have configured 5 environment variables to work correctly:
VM_PUBLIC_IP: Public IP of the server hosting the blockchain network.VM_USERNAME: Username used to login to the server hosting the blockchain network.VM_PASSWORD: Password used to login to the server hosting the blockchain network.REDIS_HOST: URL of the Redis cache.REDIS_PASSWORD: Password of the Redis cache.More information about setting environment variables can be found here
Build the image
docker build -t ${imageName} -f Dockerfile ${pathToDockerfile}
Run the Docker image and connects the 8010 ports
docker run -it -p 8010:8010 ${imageName}
See the open issues for a list of proposed features (and known issues).
Contributions are what make the open source community such an amazing place to be learn, inspire, and create. Any contributions you make are greatly appreciated.
git checkout -b feature/AmazingFeature)git commit -m 'Add some AmazingFeature')git push origin feature/AmazingFeature)Distributed under the MIT License. See LICENSE for more information.
João Almeida - @João Almeida - [email protected]
Project Link: https://github.com/Jalmeida1994/GatherChain-Web-Server
Content type
Image
Digest
Size
68.6 MB
Last updated
over 5 years ago
docker pull jalmeida1994/gatherchain-app