-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from ourchitecture/our-dev
chore: use ourstage references
- Loading branch information
Showing
43 changed files
with
34,314 additions
and
33,634 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -118,3 +118,9 @@ $RECYCLE.BIN/ | |
# Specific directories. | ||
**/.wireit/ | ||
**/node_modules/ | ||
|
||
# Wildcard files. | ||
.env* | ||
*.env | ||
*.bak | ||
*.log |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"extends": ["development"], | ||
"hints": { | ||
"compat-api/html": [ | ||
"default", | ||
{ | ||
"ignore": ["meta[name=theme-color]"] | ||
} | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
324 changes: 162 additions & 162 deletions
324
.yarn/releases/yarn-remote.cjs → .yarn/releases/yarn-4.1.1.cjs
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,15 @@ | ||
compressionLevel: mixed | ||
|
||
enableGlobalCache: true | ||
|
||
# Do not track. | ||
enableTelemetry: false | ||
|
||
# Only hoist dependencies at the workspace level. | ||
nmHoistingLimits: workspaces | ||
|
||
# Use classic npm link behavior. | ||
nodeLinker: node-modules | ||
|
||
yarnPath: .yarn/releases/yarn-remote.cjs | ||
# Path to the pinned version of yarn. | ||
yarnPath: .yarn/releases/yarn-4.1.1.cjs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# Ourchitecture Monorepo | ||
|
||
Coming soon... | ||
|
||
[Maintenance](./maintenance.md) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
# Maintenance | ||
|
||
- Perform an interactive and assisted upgrade using `make upgrade`. | ||
- Review all "Containerfile" image references. | ||
- Review the below... | ||
|
||
## NodeJS projects | ||
|
||
Check ".node-version" against the current NodeJS LTS version. | ||
|
||
The "packageManager" entry for "packages.json" should usually be set to the latest release of the specific package manager being used by the project. | ||
|
||
Generally, the "engines" section of "packages.json" should be set to: | ||
|
||
- "node" should be greater than or equal to the current Long-Term Support (LTS) version to ensure all machines are using LTS or later and less than the next major version beyond the current LTS version to ensure that LTS minor upgrades and patches are automatically included until the version can be bumped. The version range should not include "Current" releases that are not yet under LTS. | ||
- "npm" should be greater than or equal to the version shipped with the most recent Long-Term Support (LTS) version specified in the "node" version range. This allows the primary "node" depenendency to be upgraded to include any version of "npm" greater than the version specified. | ||
- "yarn" should be greater than or equal to the version shipped with the most recent Long-Term Support (LTS) version in the most recent "node" OCI container image. While "node" is dependent on NodeJS releases and "npm" is dependent on bundling with "node", the "yarn" version specifically depends on the container release. | ||
|
||
### Example | ||
|
||
```json | ||
{ | ||
"engines": { | ||
/* | ||
A version range where the lower version is the most recent LST version | ||
relative to the last time project maintainers checked it. The second | ||
version would be the next major upgrade to allow the LTS version to | ||
automatically be included when minor upgrades and patches are released. | ||
*/ | ||
"node": ">=20.11.1 <21.0.0", | ||
/* | ||
This is the version shipped inside of the most recent OCI container | ||
image associated with the LTS version of "node" above. | ||
*/ | ||
"npm": ">=10.4.0", | ||
/* | ||
This is the version shipped inside of the most recent OCI container | ||
image associated with the LTS version of "node" above. | ||
*/ | ||
"yarn": ">=1.22.19" | ||
} | ||
} | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# https://backstage.io/docs/features/software-catalog/descriptor-format#kind-location | ||
apiVersion: backstage.io/v1alpha1 | ||
kind: Location | ||
metadata: | ||
name: ourchitecture-catalog | ||
description: The Ourchitecture entities catalog | ||
annotations: | ||
github.com/project-slug: ourchitecture/monorepo | ||
backstage.io/source-location: url:https://github.com/ourchitecture/monorepo/ | ||
spec: | ||
targets: | ||
- ./groups/catalog-info.yaml | ||
- ./users/catalog-info.yaml |
18 changes: 18 additions & 0 deletions
18
src/systems/dev/backstage/catalog/groups/catalog-info.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# https://backstage.io/docs/features/software-catalog/descriptor-format#kind-group | ||
apiVersion: backstage.io/v1alpha1 | ||
kind: Group | ||
metadata: | ||
description: The Ourchitecture team | ||
name: ourchitecture | ||
links: | ||
- title: Ourchitecture.io | ||
url: http://ourchitecture.io | ||
- icon: github | ||
title: Ourchitecture @GitHub | ||
url: http://github.com/ourchitectureio | ||
spec: | ||
children: [] | ||
profile: | ||
displayName: Ourchitecture Team | ||
picture: https://avatars.githubusercontent.com/u/97544811?v=4 | ||
type: team |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# https://backstage.io/docs/features/software-catalog/descriptor-format#kind-user | ||
apiVersion: backstage.io/v1alpha1 | ||
kind: User | ||
metadata: | ||
name: ourchitectureio | ||
links: | ||
- icon: github | ||
title: GitHub | ||
url: https://github.com/ourchitectureio | ||
- icon: twitter | ||
title: Twitter | ||
url: https://twitter.com/ourchitectureio | ||
spec: | ||
profile: | ||
displayName: Ourchitecture Automation | ||
picture: https://avatars.githubusercontent.com/u/97544811?v=4 | ||
memberOf: [ourchitecture] | ||
--- | ||
apiVersion: backstage.io/v1alpha1 | ||
kind: User | ||
metadata: | ||
name: ericis | ||
links: | ||
- icon: github | ||
title: GitHub | ||
url: https://github.com/ericis | ||
- icon: linkedin | ||
title: LinkedIn | ||
url: https://linkedin.com/in/iseric | ||
spec: | ||
profile: | ||
displayName: Eric Swanson | ||
picture: https://media.licdn.com/dms/image/C4E03AQHRTsy5SALJPw/profile-displayphoto-shrink_800_800/0/1552059989146?e=1715817600&v=beta&t=kLFz3GWAGL2AML5w_i-UL96usjx57PODB9lpJZ1CowY | ||
memberOf: [ourchitecture] |
Oops, something went wrong.