forked from Tomas/webdl
14 lines
147 B
Bash
Executable File
14 lines
147 B
Bash
Executable File
#!/bin/bash
|
|
|
|
source env/bin/activate
|
|
|
|
npm run build
|
|
|
|
line=""
|
|
for n in `seq $(tput cols)`; do
|
|
line="$line="
|
|
done
|
|
echo $line
|
|
|
|
node dist/index.js
|