Skip to content
Snippets Groups Projects
entrypoint.sh 304 B
Newer Older
Matteo Parrucci's avatar
Matteo Parrucci committed
echo "installing frontend"
echo "serving frontend"
Matteo Parrucci's avatar
Matteo Parrucci committed
if [ "$DEBUG" = 1 ]
then
Matteo Parrucci's avatar
Matteo Parrucci committed
    echo "develompent running frontend"
    npm run start
Matteo Parrucci's avatar
Matteo Parrucci committed
else
Matteo Parrucci's avatar
Matteo Parrucci committed
    echo "productions running frontend"
    serve build -d -l 3000
# DANGEROUSLY_DISABLE_HOST_CHECK=true HOST=0.0.0.0 npm start