* Use a flag to determine wether to use techdocs-container or local install of mkdocs
* Updated techdocs generator to look at app-config string instead of argument to decide how to run the generator
* Removed console log...
* Reverted scaffolder file that was accidentally committed.
* Fixed lint issues
* Added config to create-app template
Previously the button was displayed every time the table was empty. This event happend during filtering, causing the layout to switch around. Now we check if the catalog is completly empty instead. In addition the button is now at the top of the page and not part of the table. If no example locations are configured, it is completly hidden.
* 'master' of github.com:spotify/backstage: (22 commits)
[microsite] Add CNCF logo (#2511)
feat: use title for API type in table
new tutorials (#2435)
e2e-test: ignore unhandled errors from jsdom
Techdocs without docker-in-docker (#2438)
Test for docker before attempting to run a container (#2497)
scaffolder: Fix backend fails to start
feat: add api-docs config ref for widgets
Mark docs template description as required
Send component description to GitHub
Pass props to lists and control rendering from outside wrapper
Remove commented out code
Remove unnecessary boolean conversion
docs: improve navigation around ADRs
Update default-app template
Handle empty sections
Change logic of FeatureFlags.toggle()
Update sidepar
Add featureflags components and toggle method on api
Cleanup and breaking out into more components
...
* new tutorial
* prettier formatting
* Update quickstart.md
* prettier write
* refined quickstart tutorial
* Create QuickStart-app-plugin
* Rename QuickStart-app-plugin to quickStart-app-plugin
* Update and rename quickStart-app-plugin to quickstart-app-plugin
* Adding second tutorial with prettier
* removing rogue file
* updating where to go link
* adding sidebars entry for new tutorials
We're deploying backstage to GKE and have had issues getting techdocs
volume mount logic to work because of mixing paths between the host and
the container running the backend. So we added a condition where if
mkdocs is found in the backend container it will use that to generate
the docs rather than spinning it up in a docker container.
Test for docker using ping() before attempting any docker
operations. If this fails we know docker is unavailable
and we can fail with an more descriptive error.
* 'mob/union-types' of github.com:spotify/backstage: (34 commits)
fix(yarn): fixup yarn.lock
docs(catalog/grqphql): updating docs
chore(gql/catalog): fixing some code review comments
chore(gql/catalog): fixing dependencies
chore: reverting code
feat(gql/catalog): to remove the duplication in the schema thanks to the limitations on implements, let's create the schema using javascript
feat(gql/catalog): working on making the schema nice
feat(gql/catalog): Reduce the amount of duplication a little for unions
chore(catalog/gql): fixing csp for playground
chore(catalog/gql): move the catalog schema out of src
chore(gql/catalog): updating the return types from the catalog api
chore(gql/catalog): removing the mock data scripts for catalog-graph l
chore(gql/catalog): actually read
chore(gql/catalog): fixing bundling of graphql asse
chore(gql/catalog): removing the mock-data stuff
feat(gql/catalog): implement the label resolver
feat(gql/catalog): Fixing some of the query issues
chore(gql/catalog): making the client alittle more readabke
chore(gql/catalog): Added some more metadata fields to the catalog entities
feat(gql/catlaog): Tidying up the resolver for the annotations
...
* 'master' of github.com:spotify/backstage: (656 commits)
Update playback-order-component.yaml (#2495)
feat: rework Api Explorer components
Add GitLab integration for scaffolder
feat(catalog-backend): support GHE and other GitHub providers
Add scaffolder config to monorepo (#2492)
Simplify code
prettified md
Added PlantUML diagrams in backstage.io docs (#2413)
chore(deps): bump nodegit from 0.26.5 to 0.27.0 (#2454)
grammar correction
added description header field
added description header field
added description header field
added description header field
added description header field
Condense if to else if
Update docs
Reword
Make access optional
eslintignore: add template dirs
...
In my testing, attempts to create a docs site with no description would
fail with the error:
```
Unable to create file 'component-info.yaml'
Error message: 'collections.OrderedDict object' has no attribute 'description'
```
Better to mark it required than let the user hit the error.