5 lines
159 B
Bash
Executable file
5 lines
159 B
Bash
Executable file
#!/bin/sh
|
|
cd sourcemap-reader
|
|
nohup npm start &> /tmp/sourcemap-reader.log &
|
|
cd ..
|
|
uvicorn app:app --host 0.0.0.0 --port $LISTEN_PORT --reload --proxy-headers
|