mirror of
https://github.com/wekan/wekan.git
synced 2025-12-16 23:40:13 +01:00
10 lines
141 B
Bash
Executable file
10 lines
141 B
Bash
Executable file
#!/bin/bash
|
|
set -euxo pipefail
|
|
|
|
readonly CONF=/build/env.config
|
|
|
|
source ${CONF}
|
|
|
|
cd /build
|
|
echo "starting the wekan service..."
|
|
node main.js
|