forked from Tomas/webdl
14 lines
147 B
Bash
14 lines
147 B
Bash
|
|
#!/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
|