mirror of
https://github.com/EpicMorg/docker-scripts.git
synced 2024-12-25 22:25:40 +03:00
12 lines
320 B
Bash
Executable File
12 lines
320 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo "============================================="
|
|
echo node $(node --version)
|
|
echo npm $(npm --version)
|
|
echo yarn $(yarn --version)
|
|
echo "============================================="
|
|
echo "[nodejs] Electron Release Server is Starting up"
|
|
echo "============================================="
|
|
|
|
npm start
|