Skip to content

Commit

Permalink
Add a script and a systemd unit for starting the webviewer
Browse files Browse the repository at this point in the history
  • Loading branch information
arteymix committed Jan 22, 2024
1 parent 41dee41 commit 5cd89b4
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
12 changes: 12 additions & 0 deletions data/rnaseq-pipeline-viewer.service
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
[Unit]
Description=PavLab RNA-Seq Pipeline Viewer
After=multi-user.target

[Service]
Type=simple
WorkingDirectory=/space/grp/Pipelines/rnaseq-pipeline
ExecStart=/space/grp/Pipelines/rnaseq-pipeline/scripts/webviewer
User=poirigui

[Install]
WantedBy=multi-user.target
4 changes: 4 additions & 0 deletions scripts/webviewer
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/bin/fish

conda activate rnaseq-pipeline
exec gunicorn -e SCRIPT_NAME=/rnaseq-pipeline -b 0.0.0.0:8000 rnaseq_pipeline.webviewer:app --access-logfile pipeline-output/webviewer-logs/access.log --error-logfile pipeline-output/webviewer-logs/error.log

0 comments on commit 5cd89b4

Please sign in to comment.