mirror of
https://github.com/plankanban/planka.git
synced 2025-07-24 15:49:46 +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
|