mirror of
https://github.com/plankanban/planka.git
synced 2025-07-18 20:59:44 +02:00
9 lines
92 B
Bash
Executable file
9 lines
92 B
Bash
Executable file
#!/bin/bash
|
|
set -e
|
|
|
|
# db
|
|
node db/init.js
|
|
|
|
# app
|
|
export NODE_ENV=production
|
|
exec node app.js
|