Coder Social home page Coder Social logo

pawelmahooana / hyperledger-fabric-on-linux-one Goto Github PK

View Code? Open in Web Editor NEW

This project forked from druidtom3/hyperledger-on-linuxone

1.0 1.0 0.0 38.83 MB

Install and Use on Hyperledger Fabric on LinuxONE Community Cloud

Home Page: https://developer.ibm.com/code/patterns/run-blockchain-technology-on-a-linux-mainframe/

License: Apache License 2.0

Shell 40.86% JavaScript 59.14%

hyperledger-fabric-on-linux-one's Introduction

Hyperledger Fabric and Hyperledger Composer on LinuxONE

Architecture

Flow Diagram

This journey will guide you through the following process.

  1. Access your LinuxONE guest.
  2. Setup and verify of your blockchain environment.
  3. Create a blockchain project in Hyperledger Composer.
  4. Interact with blockchain and third party APIs through Composer Rest Server and NodeRed.

Application Overview

This blockchain journey is intended to give you a basic understanding of how a developer would interact with Hyperledger Fabric using Hyperledger Composer. In this workshop you will use a browser based UI to modify chaincode, test your code and deploy your changes. You will also learn how tooling can take the code and generate API to allow for application integration through a REST-ful interface.

This lab will be broken into three parts:

Part 1 - Setting up your LinuxONE Community Cloud guest

  1. Request access to LinuxONE Community Cloud.

  2. Create your LinuxONE guest

  3. Setup your Linux guest for Hyperledger Fabric and Hyperledger Composer

  4. Verify the installation of Hyperledger Fabric and Hyperledger Composer

Part 2 — Creating a blockchain application and generating API

  1. Importing the components of your blockchain application

  2. Creating your blockchain application

  3. Test application code

  4. Deploy application to Hyperledger Fabric

  5. Generating API from your blockchain application

Part 3 — Utilizing blockchain API through NodeRED

  1. Importing your flow into NodeRED

  2. Interacting with blockchain through a dashboard

Workshop Instructions

Scenario Overview

For this journey, we will simulate a thermostat and a temperature gauge to provide us temperature data. In a real world scenario, this could be a temperature sensor in your house or in an office building. The sensor could be connected to a real thermostat like Nest or other smart home devices via API. To keep family members, housemates, friends or children from excessively running air conditioning or heat, they must first find out if they have permission to adjust the thermostat by running a transaction defined in a smart contract running on Hyperledger Fabric. The contract will check the value recorded in the ledger for the temperature gauge to determine if their thermostat adjustment is environmentally friendly. Secondly, it will add integration to Weather.com to check current temperatures and adjust the thermostat to ideal settings based on the terms of the smart contract.

Part 1 - Setting up your LinuxONE Community Cloud guest

In this section of the journey you will request access to the LinuxONE Community Cloud, establish a SLES guest, run a setup script and verify the installation.

Request access to LinuxONE Community Cloud.

  1. In a browser, go to https://developer.ibm.com/linuxone/ .

    LinuxONE Community Cloud Page

  2. Click Start your trial now.

    Click Start your trial now.

  3. Complete the required fields on the page and select Request your trial.

    Complete application

  4. You will come to the following page. Click Sign In.

    Click Sign In.

  5. Check your email for a registration confirmation similar to the following shown. You'll need your User ID and Password from this email for the next step.

    Check your email for the registration confirmation email.

    Create your LinuxONE guest

  6. Back in your browser, enter the user ID and password from your email. Click Sign in.

    • Note: Now is a good time to change your password to one you'll remember. This can be done after the initial sign in by selecting your username from the upper right corner of the web page and selecting account settings.

    Sign in to LinuxONE Community Cloud.

  7. From the Home page of IBM LinuxONE Community Cloud, select Manage Instances on Virtual Servers under Infrastructure.

    Select Virtual Servers.

  8. Click create.

    Click create.

  9. Complete the following information:

    • Select General purpose VM for the type.

    • Enter an instance name — DJBlockchain

    • Enter an instance description — Blockchain guest for Developers Journey.

    • Select SLES12 SP3 for the image.

    • Select LinuxONE-Medium for the flavor.

      Create your LinuxONE guest.

  10. Scroll down. Under Select a SSH Key Pair click create.

Click create.

  1. In the pop-up dialog, enter the key name, DJBlockchain and select Create a new key pair.

    Enter a key name and select create.

  2. Depending on your computer, you may receive a prompt asking you if you would like to save the new key pair. If so, choose to Save File.

    Click Save File.

  3. In the Select a SSH Key Pair box, select your newly create key pair, DJBlockchain.

    Select DJBlockchain.

  4. Review the Current Selection information for accuracy and click create at the bottom of the screen to create your SLES 12 LinuxONE guest.

    Click create.

  5. ​Watch the status of your newly create guest go through the following phases of start up: networking ➡️ spawning ➡️ Active. When your guest shows active, it is ready for use.

    • Note — Write down the IP address of your guest. You'll need that for the next steps.

    Guest is ready!

  6. From a terminal on your computer, navigate to the directory where you saved the SSH Key Pair, DJBlockchain. An example location is shown below.

    Download location example.

  7. Modify the permissions of your private key by entering chmod 600 DJBlockchain.pem.

    Modify permissions.

  8. From the location where your DJBlockchain.pem SSH key pair is, enter the command ssh -i DJBlockchain.pem [email protected] where the x's correspond to your Linux guest IP.

  9. Type yes to the continue connecting prompt and hit the enter key.

    Type yes.

  10. You are now connected into your IBM LinuxONE Community Cloud Guest!

    Success!

    Setup your Linux guest for Hyperledger Fabric and Hyperledger Composer

  11. Now it is time to setup your guest! Run the following command, to move the setup script from the Github Repository to your Linux guest.

    wget https://raw.githubusercontent.com/IBM/HyperledgerFabric-on-LinuxOne/master/Linux1BlockchainScript.sh

    Import script.

  12. Enter ls to confirm the file is in your directory.

    View script.

  13. To make the file executable, run chmod u+x Linux1BlockchainScript.sh and then ls to make sure that it is showing as an executable file.

    Make the file executable.

  14. You're ready to run the setup script! Run the script using the following command, ./Linux1BlockchainScript.sh. Be patient. It takes awhile!

Run setup script.

  1. The first time you run the script, it will set some permissions and environment variables that require you to exit and log in again.

    • Exit the session by typing exit.

    • Log in again — ssh -i DJBlockchain.pem [email protected] where the x's correspond to your Linux guest IP.

    • Run the script again — ./Linux1BlockchainScript.sh

      linux1@djblockchain:~> ./Linux1BlockchainScript.sh 
      ID linux1 was not a member of the docker group. This has been corrected.
      PATH was missing '/data/npm/bin'. This has been corrected.
      Some changes have been made that require you to log out and log back in.
      Please do this now and then re-run this script.
  1. It's completed when the command line returns. It will look similar to the following image.

Setup script is finished.

  1. For some of the changes made by the script to take effect, exit the ssh session by typing exit.

Exit session.

  1. Log back in to your guest. ssh -i DJBlockchain.pem [email protected]where x is the values for your guest's IP address. (Refer to step 15 if you need help finding it.)

Log back in to your guest.

Verify the installation of Hyperledger Fabric and Hyperledger Composer

  1. To see if your blockchain network is up and running, use the command docker ps -a. You should see 4 containers with image names like the ones shown below.

Running fabric containers.

  1. Verify that the composer command line interface and other tools were installed by entering composer -v.

Verify Composer tools installation.

  1. Verify Composer Playground is running by looking for its process using the command, ps -ef|grep playground.

Verify Composer Playground is running.

  1. Create the first network (hlfv1) of your hyperledger fabric and then add the Peeradmin in the network, which contains a piece of information Card Name:PeerAdmin@hlfv1 UserId:PeerAdmin Business Network:(None)

Create the network hlfv1.

Add the peer admin.

  1. Open a browser and enter xxx.xxx.x.x:8080 into the address bar where the x's correspond to your Linux guest's IP address.

    • Note: It is recommended to use Chrome as your browser for Hyperledger Composer Playground. It is also recommended that you open the Playground in a Incognito Window. This allows you to quickly clear cache and history if you start noticing odd behaviors.
    • Note: If you use Firefox, you cannot use it in Private mode.
    • You should see the following:

Loading Composer Playground.

Loaded Composer Playground.

  1. Congratulations! Part 1 is now complete! Lets get to work on the fun part. 😃

Part 2 — Creating a blockchain application and generating API

Importing the components of your blockchain application

  1. In a terminal on your computer, move to the home directory. cd $HOME

  2. If not already installed, install Git for your computer.

  3. Once Git is installed, run the following command to clone the needed materials for this exercise. git clone https://github.com/IBM/HyperledgerFabric-on-LinuxOne.git

Clone GitHub repository

  1. To find the files you'll need for this, cd HyperledgerFabric-on-LinuxOne/code/ and then run ls to see what is in the directory.

    Move to code directory.

  2. Enter pwd to see where you are on your system. Save this information. You'll need it in a few steps.

    Enter pwd.

  3. Go back to your browser that has Composer Playground open. If you've closed it, you can open it in your browser by entering xxx.xxx.x.x:8080 into the address bar where the x's correspond to your Linux guest's IP address.

    • Note: You will need to view the browser in Full Screen (fully expanded) mode to be able to access everything and prevent issues with inability to scroll on certain screens.

    View Composer Playground.

  4. Select Deploy a new business network under Connection: Web Browser. Select Deploy a new business network.

  5. Complete the BASIC INFORMATION.

    • Give your new Business Network a name: blockchain-journery

    • Describe what your Business Network will be used for: Creating my first blockchain network.

      Complete the Basic Information

  6. Scroll until you can see Choose a Business Network Definition to start with: and select empty-business-network and Deploy. Click empty-business-network and Deploy.

    • From My Wallet select Connect now to go into your business network.

Select Connect now.

  1. Select Add a File.

    Select Add a File.

  2. From the Add a file pop-up dialog, select browse.

    Select browse.

  3. In the file explorer window, navigate to where you downloaded the files. Refer to step 5 if you need help finding this location. Select README.md and Click Open. Select README.md

  4. Select Add. Select Add.

  5. On the Current file will be replaced dialog, select Replace.

Select Add.

  1. Let's keep adding the files to the Composer Playground. Repeat steps 11-15 to add the following files:
  • org.acme.sample.cto — This is located in the models folder. In this exercise you'll use this file to create a model for your asset and transactions. You could also create participants in this file. This is similar to creating a Java class and defining what you would need in the class.

  • logic.js — This is located in the lib folder. This is a JavaScript file that becomes the brains of your application. In this file is code, your smart contract, that defines how a transaction can happen. This is similar to Java methods.

  • Add last: permissions.acl — This is where you would limit permissions for participants in a blockchain network.

  • Remove model.cto: -- This is the empty model file that came with the sample. We will delete it to avoid any potential problems.

    • Click on model.cto

    • Click on the trash can icon to remove it.

      Remove model.cto

  1. Your files are all now loaded into Composer Playground. Click DeployChanges on the left side of the browser.

Click Deploy.

Creating your blockchain application

  1. Click on Model File.

    Click Model File

  2. Click in the editor on the right to begin writing your models.

    • NOTE: DO NOT modify the namespace during the lab.

      Click in the editor

  3. On a new line, give your asset Sensor the following attributes.

    • Note: a small "o" is used as a bullet in the model.

    • o String teamID — this will be the value that is assigned to your team. (already there!)

    • o String teamName— this could be anything! Come up with something clever!

    • o Double sensorTemp — temperature from the Raspberry Pi will be stored here.

    • o Double thermostatTemp— you will create a temperature for the thermostat.

    • o String recommendation— this will be populated based on the CompareWeather transaction.

    • Click Deploy Changes to save changes.

      Sensor model

  4. Now create your first transaction model for SetSensorTemp. Enter the following attributes:

    • --> Sensor gauge — The transaction will need to put data into the Sensor asset. This passes a reference to the asset so we can work with the asset in the logic for the transaction.

    • o Double newSensorValue — This is the variable that will be set by the temperature passed into the transaction from the NodeRed Sensor for picking up temperature.

    • Click Deploy Changes to save changes.

      Create SetSensorTemp model

  5. Build your ChangeThermostatTemp transaction model. Add the following:

    • --> Sensor thermostat — The transaction will need to put data into the Sensor asset for the thermostat. This passes a reference to the asset so we can work with the asset in the logic for the transaction.

    • o Double newThermostatValue — This allows for a new, proposed value to be sent into the transaction. In the logic tab, we will use this value to compare to what the gauge says and decide if the thermostat value should be adjusted.

    • Click Deploy Changes to save changes.

      Create ChangeThermostatTemp model

  6. Enter the following values to build your CompareWeather transaction model:

    • --> Sensor recommend — The transaction will need to put data into the Sensor asset. This passes a reference to the asset so we can work with the asset in the logic for the transaction.

    • o Double outsideTemp — Looking at the WeatherUnderground.com API for Conditions, you can see all of the possible data that the call could return. Based on the data, it was decided to take the actual outside temperature and the feels like temperature to give a recommendation on thermostat settings. This variable stores the value passed into it via NodeRed from Weather.com for the outside temperature. The model on the API page shows up whether the data is returned in Celsius or Fahrenheit and its variable type. In this exercise we will use Celsius.

    • o Double feelsLike— the variable to store the feels_like value from Weather.com.

    • Click Deploy Changes to save changes.

      create CompareWeather model

  7. Click on the Script File tab.

Click Script File

  1. **Review the code in the editor. **Verify that your variable names match the variable names here. Capitalization does matter! If names don't match, you'll have errors.

    • Any guesses what the code is doing for each transaction?

      Review code

    Test application code

  2. Click on the Test tab at the top to try out your code.

Click Test

  1. Notice that in this particular case because we have no participants, the Test tab has opened to the Asset menu on the left. You must have an asset to be able to run any of the transactions.

    • Click Create New Asset.

      Click Create New Asset

  2. Create an example asset to test your code by filling in the following information:

  • "teamID": "teamID:**xxx**" where ** xxx ** is any team number you'd like.

  • "teamName":"" — this could be any name you'd like. Be clever! :bowtie:

  • "sensorTemp": **0** — Set ** 0 ** to any value. When you work with NodeRed, temperatures will be in Celsius.

  • "thermostatTemp": **0** — Set ** 0 ** to any value. This is initializing your thermostat so pick a value you want to work with.

  • "recommendation": "" — Leave this as is.

  • Make a note somewhere* of the values you used for sensorTemp and thermostatTemp.

    Create asset

  1. Click Create New.

Click Create New

  1. Once your Team asset is created it should show in the registry as shown below.

    Asset registry

  2. You're ready to run your first transaction. Click on Submit Transaction.

    Click Submit Transaction

  3. The Submit Transaction dialog will open a new window.

    • Make sure that the Transaction Type is set to SetSensorTemp.

    • Modify the JSON data"gauge": "resource:org.acme.sample.Sensor#xxxx" — enter your team's identifier in place of the value where xxxx is in the sample JSON data.

    • Modify the JSON data"newSensorValue": 0 — enter a value your sensor could have.

    • Click Submit.

      Submit SetSensorTemp

  4. If you submitted the transaction with your correct team ID, then you should have a transaction showing under All Transactions. Click view record to see the data you entered in the prior step. Congratulations! You've now completed a transaction. 👍

    Transaction Registry

  5. Verify that SetSensorTemp updated the sensorTempvalue in your asset. Click Sensor.

    Click Team

  6. Check the sensorTemp value. Does it have the new value from the SetSensorTemp transaction?

    Check sensorTemp value

  7. Let's do another transaction. Select Submit Transaction.

    Select Submit Transaction

  8. This time let's run, ChangeThermostatTemp.

  • In the Transaction Type drop down, select ChangeThermostatTemp. Select ChangeThermostatTemp

  • Edit the sample JSON for the transaction"thermostat": "resource:org.acme.sample.Sensor#xxxx"— change xxxx to your team ID value.

  • Edit the sample JSON for the transaction"newThermostatValue": 0 — Replace 0 with a value to which you would like to see if you can adjust the thermostat.

  • Click Submit.

    Submit ChangeThermostatTemp

  • If you select a temperature for the thermostat that is not within 3 degrees of the sensorTemp value, then you will get an error message like the one below. If you get this message, enter another value and click submit.

    ChangeThermostatTemp Error Message

  • If you do have permission to adjust the thermostat, you will be returned back to the transaction registry where you can see the data you just submitted.

    Successful Transaction

  • If for some reason you forget to modify your teamID value or update it to the wrong value, you will see an error like the one shown below. Check your value for teamID and try again.

    Asset does not exist error message

  1. Verify that the last transaction updated your asset. Click Sensor.

    Click Sensor

  2. Verify that the thermostatTemp attribute for your Team has been updated to the value you gave successsfully in the ChangeThermostatTemp transaction.

    • Note: In step 40, you can verify that the thermostat was originally set to 20 and is now set to 16.

      Verify thermostatTemp value

  3. Time to work with the CompareWeather transaction. Click Submit Transaction.

    Click Submit Transaction

  4. Select CompareWeather from the Transaction Type drop down.

    Select CompareWeather

  5. Complete the CompareWeather transaction.

    • Modify the JSON, "recommend": "resource:org.acme.sample.Sensor#xxxx"— Replace xxxx with your team ID.

    • Modify the JSON for"outsideTemp": 0— Enter a value for an outside temperature.

    • Edit the JSON for"feelsLike": 0 — Enter a value for what temperature it could feel like outside.

    • Click Submit.

      Complete CompareWeather

  6. Verify that your transaction is showing in the Transaction Registry.

    Transaction Registry

  7. Click on Sensor.

    Click Sensor

  8. Verify there is now a message in the recommendationvariable in your Team asset and that the thermostatValue has been updated to the recommended value.

    Team asset recommendation value

  9. Continue testing your code for all scenarios to understand what your contract(s) can do. The hints to the remaining scenarios are as follows: (Yes, you'll have to look at the Script File under the Define Tab to figure out the criteria.)

    • ChangeThemostatTemp:

      • A successful transaction where the thermostatValue is updated in the Sensor asset.
      • An error message in the Submit Transaction window advising you do not have permission to adjust the thermostat.
    • CompareWeather:

      • A transaction based on outsideTemp values where it is really hot.
      • A transaction based on outsideTemp values where it is quite nice.
      • A transaction based on outsideTemp values where it is cold.
      • A transaction based on feelsLike values where it hot.
      • A transaction based on feelsLike values where it is quite nice.
      • A transaction based on feelsLike values where it is cold.
    • Note: You should verify that your asset values have been updated appropriately after each transaction like you did in prior steps.

Deploy application to Hyperledger Fabric

  1. Back in your browser where Hyperledger Composer Playground is running, click the Define tab and then click Export to save your code to your desktop. This is a safety measure. Export saves all of the indivudual files we imported at the beginning of Part 2 into a compressed file called a business network archive (.bna). Click Export

  2. In the pop-up dialog, choose your directory location and click Save. Click Save File.

  3. In the upper right corner of your browser, select admin and click My Business Networks. Select admin and logout.

  4. In the middle of the page, click Deploy a new business network under the Connection: hlfv1 business network.

Select Create ID card.

  1. Complete the fields under Basic Information and then click Drop here to upload or browse.

    • Business Network: hlfv1-blockchain-journey
    • Description: "Blockchain Journey network deployed to hlfv1"
    • Network Admin Card: admin@hlfv1-blockchain-journey

    Select Hyperledger Fabric v1.0.

  2. Navigate to where you saved your blockchain-journey.bna in step 49. Select blockchain-journey.bna from its directory and click Open.

    Enter the information in the Composer Playground Profile.

  3. Scroll to the bottom of the page and complete the following:

    • Select ID and Secret.
    • Create an Enrollment ID of admin.
    • Create an Enrollment Secret of adminpw.
    • Note: If you create a different Enrollment Id and Enrollment Secret then you will need to create and import a network card for that ID. See Hyperledger Composer documentation for more information.

    Create the credentials for the ID card.

  4. Scroll up to the top and click Deploy on the right side.

    Click Deploy a new business network.

  5. Under Connection: hlfv1, find your newly deployed network hlfv1-blockchain-journey. Click Connect now.

    Fill in the values.

  6. Back in your terminal, enter docker ps -a . You can see there is now a new container running where Composer Playground has deployed code to the Hyperledger Fabric.

    View Hyperledger Composer Playground container.

  7. Congratulations! You've deployed your first blockchain application to Hyperledger Fabric.

#### Generating API
  1. In your terminal, issue the following commands to start the API rest server:

    • mkdir /data/linux1/playground

    • nohup composer-rest-server -c admin@hlfv1-blockchain-journey -n always -w true >/data/linux1/playground/rest.stdout 2>/data/linux1/playground/rest.stderr & disown

      Start your API rest server.

  2. Verify the rest server process is running. ps -ef|grep rest

    Verify the rest server is running.

  3. To see your API, go back to your browser and open a new tab or window. In the address bar, enter http://xxx.xxx.x.x:3000/explorer where the x's are the IP address for your Linux guest. You should see a page like the one shown.

    View your REST APIs.

  4. Expand the different methods to see the various calls and parameters you can make through REST API. You can also test the API in this browser to learn how to form the API and see the responses.

    Test your API.

  5. Congratulations! You now have a working blockchain application and have created APIs to call your blockchain application.

Part 3 — Utilizing blockchain API through NodeRED

Importing your flow into NodeRED

  1. Open NodeRED in your browser in a new tab or window. Enter http://xxx.xxx.x.x:1880 in the address bar where the x's correspond to your Linux guest IP address.

    • Note: You may need to use a browser other than Chrome for Node-RED. There have been intermittant issues with Node-RED loading properly in Chrome.

    Open NodeRED.

  2. You'll need to add a few more nodes to your NodeRED palette to have complete working flows. To do this, select the menu button in the upper right corner.

    Select the menu icon.

  3. Select Manage Palette from the drop down menu.

    Select Manage Palette.

  4. In the User Settings window, click Install, type dashboard in the search bar and select install next to node-red-dashboard.

    Install node-red-dashboard nodes.

  5. In the Install nodes pop-up, click Install.

    Click install.

  6. Now it's time to install a RaspberryPi Sense Hat simulator. In the User Settings window under Install, type sense in the search bar and select install next to node-red-pi-sense-hat-simulator.

    Install Raspberry Pi Sense Hat Simulator nodes.

  7. In the Install nodes pop-up, click Install.

    Click install.

  8. One more node to add, type weather in the search dialog and select install next to node-red-node-weather-underground.

    Install weather underground nodes.

  9. In the Install nodes pop-up, click Install.

    Click install.

  10. Click Close to leave the User Settings dialog.

Click Close.

  1. Copy all of the JSON from the GitHub repository to import into the flow.

    • Note: The easiest way to do this is clicking the hyperlink above. You can also find it in the GitHub repository in the code folder as node-red.json. To view it in GitHub, click on node-red.json, select raw and then copy it.

Copy the raw JSON.

  1. Paste it into NodeRed, by clicking on the menu icon in the upper right corner.

menu

  1. Select Import -> Clipboard.

menu

  1. Paste the code in the editor. Make sure to select "current flow" button. Select Import.

import editor

  1. You should now have three flows in NodeRED — Blockchain, Dashboard and Gauge.

Three NodeRED flows.

  1. On the right side of the Node-RED browser, click Deploy to save the work you've imported.

Click Deploy.

Interacting with blockchain through a dashboard

  1. Click the dashboard tab in the upper right corner under Deploy.

    Click dashboard.

  2. Click the pop out button to open the dashboard in a browser.

    Click the pop out button.

  3. A new tab should open. Your dashboard should look like the following image.

    Dashboard image.

  4. To interact with your simulated RaspberryPi, go back to your Node-RED tab and select the Gauge Simulator tab.

    Select the Gauge Simulator tab.

  5. Click on the Sensor Gauge Simulator node.

    Click on the Sensor Gauge Simulator node.

  6. On the right side of the browser, click on the Info tab.

    Click Info.

  7. In the third paragraph under Information there is a hyperlink for the word here. That hyperlink opens the simulator in a new tab. Click here.

    Click here.

  8. Adjust the temperature of the sensor in the simulator from 20 C.

    Adjust the sensor temperature.

  9. Switch to the tab for your dashboard, click Get Sense Hat Temperature to see the change to the sensor temperature and graph.

    Notice the sensor differences in the dashboard.

  10. Continue to play with your dashboard to interact with blockchain via API. You can try the following:

    • Type in a team name & click Add Team Name. You should see a successful message afterward.

      add team button

    • Change the thermostat by moving the slider next to Thermostat Value. Click Change Thermostat to send the value to blockchain.'

      thermo slider'

      change thermo button

    • Type in a City and State to find outside temperatures. Click Get Current Temps to get the values.

      Enter a city and state. Select Get Current Temps.

    • After you have outside temperatures, you can click Get Recommendation to find the ideal temperatures for the thermostat. Notice that this will adjust your thermostat in the dashboard.

    • recommendation result

  11. Congratulations! You've completed this journey!

License

This code pattern is licensed under the Apache Software License, Version 2. Separate third party code objects invoked within this code pattern are licensed by their respective providers pursuant to their own separate licenses. Contributions are subject to the Developer Certificate of Origin, Version 1.1 (DCO) and the Apache Software License, Version 2.

Apache Software License (ASL) FAQ

hyperledger-fabric-on-linux-one's People

Contributors

sweetjenn23 avatar wwalisa avatar vmorris avatar animeshsingh avatar ljbennett62 avatar dconroy avatar dolph avatar lordwithglory avatar stevemart avatar suona avatar schellingerhout avatar paulczar avatar tqtran7 avatar tomcli avatar

Stargazers

Paul Makhabane avatar

Watchers

James Cloos 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.