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