Configuration
Naming Your App
At some point - ideally early on - you'll want to name your project and tell your application where your API is located. To do that, jump into this file:
ShipDotnet.Dashboard/.env
PUBLIC_APPNAME = "ShipDotnet Dashboard"
PUBLIC_API_BASE_URL="http://localhost:5000"
Why do we need this?
If you're running the app on your local machine, you'll likely want the API to point to
localhost. But once you're working with a live or test environment, you'll need to point it to
the real API URL instead. The same goes for the project name - for example, in a test
environment, you might want to set it as:
PUBLIC_APPNAME = "ShipDotnet Test"
.
For Landing Page:
ShipDotnet.LandingPage/.env
PUBLIC_APPNAME = "ShipDotnet Landing"
PUBLIC_DASHBOARD_URL="https://dashboard.shipdotnet.com""
Next:
Deployment Overview