mirror of
https://github.com/PretendoNetwork/juxtaposition-ui.git
synced 2026-04-18 22:57:12 -05:00
* removed old dockerfile * add all docker related files * add certs folder to dockerfiles * move config.json to root of repo * update missed import * remove old dockerfile * add logs to ignore files
13 lines
256 B
Bash
13 lines
256 B
Bash
#!/bin/sh
|
|
|
|
files='config.json certs/access/private.pem certs/access/aes.key'
|
|
|
|
for file in $files; do
|
|
if [ ! -f $file ]; then
|
|
echo "$PWD/$file file does not exist. Please mount and try again."
|
|
exit 1
|
|
fi
|
|
done
|
|
|
|
exec node src/server.js
|