mirror of
https://github.com/openspug/spug.git
synced 2026-01-25 15:02:04 +00:00
5 lines
134 B
Bash
5 lines
134 B
Bash
#!/bin/bash
|
|
# start websocket service
|
|
cd $(dirname $(dirname $0))
|
|
source ./venv/bin/activate
|
|
exec daphne -p 9002 spug.asgi:application |