static assets, nothing interesting
heart of project
api server for proxying requests in development env
PORT=3001
you can change it to your taste, but don't forget to change "proxy" field in package.json file at the root of the directory
{
...
...
"proxy": "http://localhost:3001"
...
...
}
change port to value from .env file in server/ directory
npm run construct
npm run start
to start Webpack server
cd ./server
npm run start
to start development server
npm run dev
to start both servers (non cross-platform, maybe)
npm run build