newUI, python3,...
This commit is contained in:
parent
0bb0049f02
commit
e9d3009ffb
551 changed files with 22992 additions and 787437 deletions
24
server/howto.txt
Normal file
24
server/howto.txt
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
|
||||
create /etc/supervisor/conf.d/syncthing.conf
|
||||
|
||||
[program:syncthing]
|
||||
autorestart = True
|
||||
directory = /home/toto/
|
||||
user = toto
|
||||
command = /usr/bin/syncthing -no-browser -home="/home/toto/.config/syncthing"
|
||||
environment = STNORESTART="1", HOME="/home/toto"
|
||||
|
||||
|
||||
|
||||
|
||||
sudo supervisorctl reload
|
||||
|
||||
|
||||
supervisorctl start syncthing
|
||||
|
||||
|
||||
supervisorctl status syncthing
|
||||
|
||||
|
||||
supervisorctl tail syncthing
|
||||
|
||||
47
server/install.sh
Executable file
47
server/install.sh
Executable file
|
|
@ -0,0 +1,47 @@
|
|||
#!/bin/bash
|
||||
sudo apt upgrade
|
||||
sudo apt install htop
|
||||
sudo apt install syncthing
|
||||
#sudo apt install python-pip
|
||||
sudo apt install python3-pip
|
||||
sudo apt install git
|
||||
sudo apt install redis-server
|
||||
sudo apt install screen
|
||||
sudo apt install tmux
|
||||
#pip install numpy
|
||||
#pip install scipy
|
||||
#pip install python-rtmidi
|
||||
#pip install mido
|
||||
pip3 install scipy
|
||||
pip3 install numpy
|
||||
#pip install pygame==1.9.2
|
||||
#pip3 install pygame==1.9.2
|
||||
pip3 install redis
|
||||
pip3 install pysimpledmx
|
||||
pip3 install DMXEnttecPro
|
||||
sudo apt install libasound2-dev
|
||||
sudo apt install libjack-dev
|
||||
pip3 install python-rtmidi
|
||||
pip3 install mido
|
||||
sudo apt install nginx
|
||||
sudo apt install supervisor
|
||||
sudo apt install ssh
|
||||
sudo cp syncthing.conf to /etc/supervisor/conf.d/
|
||||
git clone https://github.com/ptone/pyosc --depth 1 /tmp/pyosc && cd /tmp/pyosc && sudo ./setup.py install
|
||||
cd /tmp
|
||||
sudo apt install portaudio19-dev
|
||||
sudo apt install cmake
|
||||
git clone https://github.com/Ableton/link.git
|
||||
cd link
|
||||
git submodule update --init --recursive
|
||||
mkdir build
|
||||
cd build
|
||||
cmake ..
|
||||
cmake --build .
|
||||
cd /tmp/
|
||||
git clone --recursive https://github.com/gonzaloflirt/link-python.git
|
||||
cd link-python
|
||||
mkdir build
|
||||
cd build
|
||||
cmake ..
|
||||
cmake --build .
|
||||
BIN
server/serverbg.png
Normal file
BIN
server/serverbg.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 337 KiB |
6
server/syncthing.conf
Normal file
6
server/syncthing.conf
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
[program:syncthing]
|
||||
autorestart = True
|
||||
directory = /home/teamlaser15/codesync
|
||||
user = teamlaser15
|
||||
command = /usr/bin/syncthing -no-browser -home="/home/teamlaser15/codesync/.config/syncthing"
|
||||
environment = STNORESTART="1", HOME="/home/teamlaser15/codesync/"
|
||||
Loading…
Add table
Add a link
Reference in a new issue