NexusV1 commited on
Commit
e69ee6a
·
verified ·
1 Parent(s): ec6f681

Create start.sh

Browse files
Files changed (1) hide show
  1. start.sh +12 -0
start.sh ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/bin/bash
2
+
3
+ # Clone repo if it doesn't exist
4
+ if [ ! -d "/app/.git" ]; then
5
+ git clone "$REPO_URL" /app
6
+ fi
7
+
8
+ cd /app
9
+
10
+ npm install
11
+
12
+ node server.js