akveo / ngx-admin-bundle-support

Support repository for ngx-admin backend bundles with issues tracking, instructions and code samples
58 stars 32 forks source link

API documentation not working (Swagger) #42

Open robledosm opened 4 years ago

robledosm commented 4 years ago

The url on INSTRUCTION_BACKEND.pdf returns 404 error. I have replaced the placeholder with the url where the api is running on my local

image

CorpSmart commented 4 years ago

this works for me: http://localhost:52471/swagger/index.html

MIchaelMainer commented 4 years ago

Yep, the documentation needs a refresher.

MIchaelMainer commented 3 years ago

For .Net bundle, I suggest an update to launchsettings.json to include the launchUrl setting:

    "ECommerce.WebApiCore": {
      "commandName": "Project",
      "launchBrowser": true,
      "launchUrl": "https://localhost:5001/swagger/index.html",
      "environmentVariables": {
        "ASPNETCORE_ENVIRONMENT": "Development"
      },
      "applicationUrl": "https://localhost:5001;http://localhost:5000"
    }