# Fill out this file, and renamed to '.dashboard.env' in order to run this with Tilt
NODE_ENV=development

# Tell the webpack dev server in wich port we wanna run, it defaults to 8080 but we have to be carefull this is not the same port as the backend
DEV_SERVER_PORT=8081

# Usually we would use nginx, but for this environment we're going to enable webpack-dev-server proxy 
ENABLE_PROXY=true 

# API server url, this url will be used for the proxy to redirect all /api calls
API_SERVER=http://localhost:8080 

