#!/bin/sh

function compile() {
    npm run build
}

function start() {
    export PORT=3000 && npm run start
}

compile;
start;

