This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Monsoon.HVPM as HVPM | |
import Monsoon.LVPM as LVPM | |
import Monsoon.sampleEngine as sampleEngine | |
import Monsoon.pmapi as pmapi | |
import os, signal | |
from multiprocessing import Process, Pipe | |
class MonsoonDaemon: | |
_instance = None |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Install Go | |
sudo apt-get update | |
sudo apt-get install git golang-go | |
# Install nodejs & yarn | |
curl -sL https://deb.nodesource.com/setup_11.x | sudo -E bash - | |
sudo apt-get install -y gcc g++ make nodejs | |
curl -sL https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add - | |
echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list | |
sudo apt-get update && sudo apt-get install yarn |