mirror of
https://github.com/plankanban/planka.git
synced 2025-12-21 01:11:26 +03:00
10 lines
92 B
Bash
Executable File
10 lines
92 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
# db
|
|
node db/init.js
|
|
|
|
# app
|
|
export NODE_ENV=production
|
|
exec node app.js
|