mirror of
https://github.com/sudoxnym/dashd.git
synced 2026-04-14 19:46:21 +00:00
8 lines
144 B
Bash
8 lines
144 B
Bash
|
|
#!/bin/bash
|
||
|
|
# start all services
|
||
|
|
|
||
|
|
python3 /app/backend.py &
|
||
|
|
python3 /app/mail_proxy.py &
|
||
|
|
python3 /app/browser_proxy.py &
|
||
|
|
nginx -g 'daemon off;'
|