Add server setup
authorEugene Petkevich <nasedil.genio.code@gmail.com>
Fri, 6 May 2022 14:29:50 +0000 (17:29 +0300)
committerEugene Petkevich <nasedil.genio.code@gmail.com>
Fri, 6 May 2022 14:29:50 +0000 (17:29 +0300)
server.scd [new file with mode: 0644]

diff --git a/server.scd b/server.scd
new file mode 100644 (file)
index 0000000..c333534
--- /dev/null
@@ -0,0 +1,14 @@
+(
+s.options.maxNodes = 128 * 1024;
+s.options.maxSynthDefs = 32 * 1024;
+s.options.memSize = 1024 * 1024;
+s.options.numBuffers = 32 * 1024;
+s.options.numAudioBusChannels = 32 * 1024;
+s.options.numControlBusChannels = 256 * 1024;
+s.options.numInputBusChannels = 16;
+s.options.numOutputBusChannels = 16;
+s.boot;
+MIDIClient.init;
+MIDIIn.connectAll;
+)
+