Index: masters/master.client.dart.fyi/buildbot.tac |
=================================================================== |
--- masters/master.client.dart.fyi/buildbot.tac (revision 0) |
+++ masters/master.client.dart.fyi/buildbot.tac (revision 0) |
@@ -0,0 +1,11 @@ |
+import os |
+ |
+from twisted.application import service |
+from buildbot.master import BuildMaster |
+ |
+basedir = os.path.dirname(os.path.abspath(__file__)) |
+configfile = r'master.cfg' |
+ |
+application = service.Application('buildmaster') |
+BuildMaster(basedir, configfile).setServiceParent(application) |
+ |