diva.exchange platform, including user interface. Fully distributed and private exchange for digital values. Including a chat client and other social functions.
https://diva.exchange
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/sh
|
|
#
|
|
# Author/Maintainer: konrad@diva.exchange
|
|
#
|
|
# Start nodeJS with the diva application.
|
|
#
|
|
set -e
|
|
|
|
# install
|
|
su node -c "cd /home/node/ && npm run install"
|
|
|
|
# start applications
|
|
su node -c "cd /home/node/ && npm start"
|