Paul Pacheco
e9d4ec7494
Separate port and host in configuration
...
Many cloud providers have an environment variable PORT.
an application is supposed to listen in that port.
Currently, the yaml for listen address looks like this:
```yaml
backend:
listen: 0.0.0.0:7000
```
the problem is that I can't use the port environment variable there.
This PR changes it to this:
```yaml
backend:
listen:
host: 0.0.0.0
port: 7000
```
if I want to use the PORT environment variable, now I can do it like this:
```yaml
backend:
listen:
host: 0.0.0.0
port:
$secret:
env: PORT
```
2020-08-13 12:28:03 -05:00
Fredrik Adelöw
65f3f4f95a
Merge pull request #1877 from andrewthauer/rollbar-updates
...
Add rollbar organization links, etc.
2020-08-12 22:22:05 +02:00
Stefan Ålund
ec13744b36
Document the service catalog ( #1922 )
2020-08-12 16:14:45 +02:00
Nikita Dudnik
d74066d045
Merge pull request #1930 from spotify/ndudnik/register-component-readme
...
docs: register component plugin
2020-08-12 16:13:58 +02:00
Nikita Nek Dudnik
e53cfe1569
fix: compress images
2020-08-12 15:21:12 +02:00
Nikita Nek Dudnik
fa67538ca4
fix: update screenshots
2020-08-12 15:18:07 +02:00
Fredrik Adelöw
359594f9d3
Merge pull request #1890 from spotify/rugvip/static-loc
...
catalog-backend: add support for static location config + bootstrap location
2020-08-12 14:57:05 +02:00
Fredrik Adelöw
19a096b8ae
Merge pull request #1838 from althafh/groupentity
...
Define a simple Group Entity
2020-08-12 14:54:04 +02:00
Ben Lambert
8d5d34650f
Merge pull request #1929 from spotify/mob/getting-started
...
docs: split getting started section in readme into create-app vs clone
2020-08-12 14:53:48 +02:00
dependabot-preview[bot]
0b252bd4b5
chore(deps): bump moment from 2.26.0 to 2.27.0 ( #1924 )
...
Bumps [moment](https://github.com/moment/moment ) from 2.26.0 to 2.27.0.
- [Release notes](https://github.com/moment/moment/releases )
- [Changelog](https://github.com/moment/moment/blob/develop/CHANGELOG.md )
- [Commits](https://github.com/moment/moment/compare/2.26.0...2.27.0 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com >
Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
2020-08-12 14:42:03 +02:00
Nikita Nek Dudnik
b8703403ae
docs: register component plugin
2020-08-12 14:36:16 +02:00
Patrik Oldsberg
4bc9a33a3c
docs: split getting started section in readme into create-app vs clone
...
Co-authored-by: Ben Lambert <ben@blam.sh >
2020-08-12 14:19:22 +02:00
Fredrik Adelöw
611201ee9f
Merge pull request #1802 from timja/jenkins-plugin
...
Jenkins plugin
2020-08-12 13:48:19 +02:00
althaf.hameez
c898200065
Fix typo
2020-08-12 19:23:43 +08:00
Andrew Thauer
aedcad72a5
feat: add rollbar links
2020-08-12 07:10:44 -04:00
Fredrik Adelöw
bb2a68b1d0
chore(jenkins): ran prettier
2020-08-12 12:54:06 +02:00
Fredrik Adelöw
3d450adb75
fix(jenkins): cleaned up deps a bit
2020-08-12 12:54:06 +02:00
Tim Jacomb
affd8f0a2d
Fix skipped
2020-08-12 12:54:06 +02:00
Tim Jacomb
88df61309e
Fix CI
2020-08-12 12:54:06 +02:00
Tim Jacomb
547604d973
Add test results to CI Table
2020-08-12 12:54:06 +02:00
Tim Jacomb
c85e952300
Add links to GitHub and include PR title on build info
2020-08-12 12:54:06 +02:00
Tim Jacomb
ea15090bb3
Add support for restarting builds
2020-08-12 12:54:06 +02:00
Tim Jacomb
fbdacc1f31
Fix docs issue
2020-08-12 12:54:06 +02:00
Tim Jacomb
93c50514bc
Fix packaging errors
2020-08-12 12:54:06 +02:00
Tim Jacomb
65d3e99840
Remove some uses of FC
2020-08-12 12:54:06 +02:00
Tim Jacomb
0e9b562223
Add pagination warning to README
2020-08-12 12:54:06 +02:00
Tim Jacomb
005df1df2b
Add Jenkins widgets
2020-08-12 12:54:06 +02:00
David Tuite
f080c3256f
Add Jenkins plugin
...
It doesn't do anything other than render "Builds go here" in a DOM but
the scaffold is there to start making API calls. This plugin borrows
heavily from the CircleCI plugin.
2020-08-12 12:54:06 +02:00
Fredrik Adelöw
2577c730e7
Merge pull request #1892 from RoadieHQ/travis-plugin
...
Install TravisCI plugin
2020-08-12 12:45:44 +02:00
Fredrik Adelöw
a1dfd5c022
Merge pull request #1917 from spotify/rugvip/nocopy
...
cli: remove copyright headers from plugin template but run lint --fix
2020-08-12 12:17:15 +02:00
David Tuite
7fd9ed1a1d
Install TravisCI plugin
2020-08-12 11:07:37 +01:00
Patrik Oldsberg
6bf9f4672f
Merge pull request #1921 from spotify/Rugvip-patch-2
...
workflows/frontend: fix verify-links being run before yarn install
2020-08-12 11:55:57 +02:00
Patrik Oldsberg
11d0644ff8
workflows/frontend: fix verify-links being run before yarn install
2020-08-12 11:54:08 +02:00
Fredrik Adelöw
f18098674e
Merge pull request #1920 from spotify/rugvip/misdeps
...
package.json: add missing deps for verify-links script
2020-08-12 11:46:21 +02:00
Patrik Oldsberg
ccb74eb62a
package.json: add missing deps for verify-links script
2020-08-12 11:41:13 +02:00
Patrik Oldsberg
61c3a7e5b7
Merge pull request #1918 from spotify/Rugvip-patch-2
...
workflows/frontend: fix workflow never being triggered
2020-08-12 11:16:53 +02:00
Patrik Oldsberg
19046ef51e
docs: fix broken links
2020-08-12 10:55:21 +02:00
Patrik Oldsberg
9056a14a68
cli: remove copyright headers from plugin template but run lint --fix
2020-08-12 10:44:12 +02:00
Patrik Oldsberg
238b5c5883
workflows/frontend: fix workflow never being triggered
2020-08-12 10:35:17 +02:00
Patrik Oldsberg
c4b6c13975
Merge pull request #1872 from spotify/rugvip/print-config
...
cli: add config:print command
2020-08-12 10:09:23 +02:00
Fredrik Adelöw
b6c2871c7a
Merge pull request #1875 from timwheelercom/timwheelercom/new-relic
...
add new relic plugin
2020-08-12 09:24:23 +02:00
Kinga Sieminiak
8c09dccfcb
Refactor of sign-in page styles ( #1894 )
...
* Allow extending and customizing Backstage layout components
* Allow customizing layout of SignInPage through the props
* Use flex property to stretch card's content
* Adapt ContentHeader styles based on props
Co-authored-by: Kinga Sieminiak <kinga.sieminiak@zalando.de >
2020-08-12 08:53:49 +02:00
dependabot-preview[bot]
12330a5be3
chore(deps): bump rollup-plugin-peer-deps-external from 2.2.2 to 2.2.3 ( #1899 )
...
Bumps [rollup-plugin-peer-deps-external](https://github.com/pmowrer/rollup-plugin-peer-deps-external ) from 2.2.2 to 2.2.3.
- [Release notes](https://github.com/pmowrer/rollup-plugin-peer-deps-external/releases )
- [Commits](https://github.com/pmowrer/rollup-plugin-peer-deps-external/compare/v2.2.2...v2.2.3 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com >
Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
2020-08-12 08:51:45 +02:00
dependabot-preview[bot]
fdb970e70e
chore(deps-dev): bump @types/lodash from 4.14.155 to 4.14.159 ( #1901 )
...
Bumps [@types/lodash](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/lodash ) from 4.14.155 to 4.14.159.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/lodash )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com >
Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
2020-08-12 08:51:10 +02:00
dependabot-preview[bot]
e873f6e5f8
chore(deps): bump fs-extra from 9.0.0 to 9.0.1 ( #1903 )
...
Bumps [fs-extra](https://github.com/jprichardson/node-fs-extra ) from 9.0.0 to 9.0.1.
- [Release notes](https://github.com/jprichardson/node-fs-extra/releases )
- [Changelog](https://github.com/jprichardson/node-fs-extra/blob/master/CHANGELOG.md )
- [Commits](https://github.com/jprichardson/node-fs-extra/compare/9.0.0...9.0.1 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com >
Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
2020-08-12 08:50:45 +02:00
Emma Indal
0ef434d911
Merge pull request #1910 from spotify/sebastianq/update-techdocs-roadmap
...
Added v2 to techdocs readme
2020-08-11 20:08:14 +02:00
Emma Indal
7529211cc0
fix(roadmap): switch links to milestones for v2 and v3
2020-08-11 20:07:17 +02:00
Emma Indal
38737c9e73
fix(roadmap): adjust project roadmap and link to use cases for v2
2020-08-11 20:04:09 +02:00
dependabot-preview[bot]
d0a3218f20
chore(deps-dev): bump @types/jest from 26.0.7 to 26.0.9 ( #1905 )
...
Bumps [@types/jest](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/jest ) from 26.0.7 to 26.0.9.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/jest )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com >
Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
2020-08-11 20:02:07 +02:00
Sebastian Qvarfordt
b0032f9739
Added v2 to techdocs readme
2020-08-11 18:47:34 +02:00