Skip to content

Commit

Permalink
ADD supervisord.conf to run custom code-server command
Browse files Browse the repository at this point in the history
  • Loading branch information
synoet committed Nov 1, 2023
1 parent 17fab1c commit a61fae6
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions theia-pincer/supervisord.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
[supervisord]
logfile=/log/ide.log
loglevel=debug

[program:theia]
command=/usr/bin/code-server --config /etc/anubis/config.yml --enable-proposed-api synoet.pincer-extension /home/anubis/%(ENV_REPO_NAME)s
directory=/home/anubis
stopsignal=KILL
user=anubis
redirect_stderr=true
stdout_logfile=/dev/fd/1
stdout_logfile_maxbytes=0

[program:incluster-init]
directory=/home/anubis
user=anubis
command=/initialize-ide.py
startretries=1
autorestart=false
redirect_stderr=true
stdout_logfile=/dev/fd/1
stdout_logfile_maxbytes=0

0 comments on commit a61fae6

Please sign in to comment.