Getting started
Launching
Navigate to the project Api directory:
cd src/ShipDotnet.Api
dotnet run
Now you can navigate to:
- http://localhost:5000 - to view your API
- http://localhost:5000/swagger - to view Swagger documentation and try out all endpoints
You will also notice the API will create SQLite database
in root of the project
Api/database.db
(to view SQLite you can use
https://sqlitebrowser.org
)
👏 👏 👏 Congrats you have your API running! 👏 👏 👏
Navigate to Dashboard project directory:
cd src/ShipDotnet.Dashboard
yarn install
yarn dev
Once running navigate to:
👏 👏 👏 Congrats you have your dashboard running! 👏 👏 👏
Navigate to Landing Page project directory:
cd src/ShipDotnet.LandingPage
yarn install
yarn dev
Once running navigate to:
👏 👏 👏 Congrats you have your landing page running! 👏 👏 👏
Next:
Setting Root Role