view service/wifi/serv.n3 @ 1544:33076ad439d1

fixes to TS and page build. remove some unused attempts at binding to <streamed-graph> Ignore-this: dc4cd74d21fef101b32da824bbf60a00 darcs-hash:46f8164157442fb22e93a3e2062ffbcd20b43350
author drewp <drewp@bigasterisk.com>
date Thu, 13 Feb 2020 10:17:54 -0800
parents 5517f54eaba8
children
line wrap: on
line source

@prefix : <http://bigasterisk.com/ns/serv#> .
@prefix auth: <http://bigasterisk.com/ns/serv/auth#> .
@prefix serv: <http://bigasterisk.com/services/> .


serv:wifi a :Service, :NpmPackage;
      :path "/wifi/";
      :openid auth:admin;
      :serverHost "bang";
      :internalPort 9070;
      :prodDockerFlags (
      "-p" "9070:9070"
      "--net=host"
      );
      :localDockerFlags (
        "-v" "`pwd`:/opt"
      );
      :localRunCmdline (
        "python3" "wifi.py" "-v"
      );
      :dockerFile "Dockerfile"
.