mirror of
https://github.com/DCsunset/taskwarrior-webui.git
synced 2025-08-23 11:37:45 +02:00
8 lines
110 B
Bash
Executable file
8 lines
110 B
Bash
Executable file
#!/bin/sh
|
|
|
|
export NODE_ENV=production
|
|
|
|
mkdir -p /run/nginx
|
|
cd /src/backend
|
|
npm start &
|
|
nginx -g 'daemon off;'
|