Skip to content
Snippets Groups Projects
Select Git revision
  • d58df4086135210c104fb3375d66d5e013f30435
  • main default protected
2 results

README.md

Blame
  • start.sh 422 B
    #!/bin/sh
    
    # setup ssh key for root user
    # must be installed by the API first within /tmp/.ssh
    mkdir ~/.ssh
    cp /tmp/.ssh/* ~/.ssh/
    
    # start command recorder
    node deadlock/recorder.js &
    
    deluser theia sudo
    
    su theia --command "python setup_trace.py"
    rm setup_trace.py
    
    # starting theia as THEIA
    su theia --command "node /home/theia/src-gen/backend/main.js /home/project --hostname=0.0.0.0 --plugins=local-dir:/home/plugins"