view service/announce/serv.n3 @ 1614:97b2c3cfdb83

refactor: inline an odometer algorithm in place of itertools.product
author drewp@bigasterisk.com
date Mon, 06 Sep 2021 23:04:34 -0700
parents f70514b127d2
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:announce a :Service;
      :path "/announce/";
      :openid auth:admin;
      :serverHost "bang";
      :internalPort 9010;
      :prodDockerFlags (
      "-p" "9010:9010"
      "--net=host"
      );
      :localDockerFlags (
      "--mount" "type=bind,source=/my/proj/homeauto/service/announce/announce.py,target=/opt/announce.py"
      "--mount" "type=bind,source=/my/proj/homeauto/service/announce/index.html,target=/opt/index.html"
      );
      :localRunCmdline ("python3" "announce.py" "-v");
      :dockerFile "Dockerfile"
.


serv:tts_server a :Service;
      :openid auth:admin;
      :serverHost "bang";
      :internalPort 59125;
      :prodDockerFlags ("-p" "59125:59125");
      :dockerFile "Dockerfile.speechServer"
.