Skip to content

Commit bde59c1

Browse files
committed
feat(monorepo): Update template to include latest organizational standards
1 parent c8f9fda commit bde59c1

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+8092
-4469
lines changed

.deepsource.toml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
version = 1
2+
3+
[[analyzers]]
4+
name = "javascript"
5+
6+
[analyzers.meta]
7+
environment = ["nodejs"]
8+
9+
[[analyzers]]
10+
name = "shell"
11+
12+
[[transformers]]
13+
name = "prettier"

.env

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
TYPESENSE_API_KEY="xyz"
2-
NODE_OPTIONS="--trace-warnings --trace-deprecation --heapsnapshot-near-heap-limit=3 --max-old-space-size=4096 --heapsnapshot-signal=SIGTERM"
3-
41
DEFAULT_LOCALE="en_US"
52
DEFAULT_TIMEZONE="America/New_York"
63

@@ -12,6 +9,5 @@ HEALTH_CHECK_PATH="/health"
129

1310
DEV_EDITOR_ID="vscode"
1411

15-
NX_VERBOSE_LOGGING=true
16-
12+
NX_VERBOSE_LOGGING=false
1713
ESLINT_USE_FLAT_CONFIG=true

.envrc

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
export DIRENV_WARN_TIMEOUT=20s
2+
3+
eval "$(devenv direnvrc)"
4+
5+
# The use_devenv function supports passing flags to the devenv command
6+
# For example: use devenv --impure --option services.postgres.enable:bool true
7+
use devenv

.github/.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
22.13.1
1+
22.14.0

.github/CODE_OF_CONDUCT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ representative at an online or offline event.
6060

6161
Instances of abusive, harassing, or otherwise unacceptable behavior may be
6262
reported to the community leaders responsible for enforcement at
63-
<admin@stormsoftware.com>. All complaints will be reviewed and investigated
63+
<admin@stormsoftware.org>. All complaints will be reviewed and investigated
6464
promptly and fairly.
6565

6666
All community leaders are obligated to respect the privacy and security of the

.github/CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
If you want to make a small change, go ahead and raise a pull request, otherwise
66
follow these steps:
77

8-
1. View the [Issues](https://github.com/storm-software/monorepo-template/issues) page to
9-
see a To-Do list of things to be implemented.
8+
1. View the [Issues](https://github.com/storm-software/monorepo-template/issues)
9+
page to see a To-Do list of things to be implemented.
1010
2. Raise an issue or comment on an existing issue with what you want to
1111
contribute if one does not already exist.
1212
3. When you get the go ahead, follow the coding guidelines and raise a pull

.github/copilot-instructions.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Copilot Instructions
2+
3+
This document serves as an index to task-specific instructions for GitHub Copilot. Each task has its own detailed instructions file in the `.github/instructions` directory.
4+
5+
## Install and Build
6+
7+
- Packages are located in the `packages` folder
8+
- Use `pnpm` as the package manager
9+
- Use `pnpm install` to install dependencies
10+
- Use `pnpm build` to build every package
11+
- Use `pnpm -r --filter "<pkgName>..." build` to build to a specific package `<pkgName>`
12+
- Use `pnpm format` to format all files
13+

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ on:
1717
push:
1818
branches:
1919
- main
20-
- canary
20+
- next
2121
- experimental
2222
paths-ignore:
2323
- "**/*.md"

.github/workflows/gitguardian.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,12 @@ on:
44
push:
55
branches:
66
- main
7-
- canary
7+
- next
88
- experimental
99
pull_request:
1010
branches:
1111
- "**"
1212

13-
permissions: {}
14-
1513
jobs:
1614
scanning:
1715
name: GitGuardian scan
@@ -24,7 +22,11 @@ jobs:
2422
persist-credentials: false
2523

2624
- name: GitGuardian scan
27-
uses: GitGuardian/ggshield/actions/secret@v1.36.0
25+
uses: GitGuardian/ggshield/actions/secret@v1.39.0
26+
with:
27+
args:
28+
"--exclude pnpm-lock.yaml --exclude tools/config/verdaccio.yml
29+
--exclude nx.json"
2830
env:
2931
GITHUB_PUSH_BEFORE_SHA: ${{ github.event.before }}
3032
GITHUB_PUSH_BASE_SHA: ${{ github.event.base }}

.github/workflows/greetings.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,15 @@ on:
55
issues:
66
branches:
77
- main
8-
- canary
8+
- next
99
- experimental
1010

11+
permissions: {}
12+
1113
jobs:
1214
greeting:
1315
runs-on: ubuntu-latest
14-
if: github.actor != 'Stormie-Bot' && github.actor != 'dependabot[bot]' &&
16+
if: github.actor != 'stormie-bot' && github.actor != 'dependabot[bot]' &&
1517
github.actor != 'mend-bolt-for-github[bot]'
1618
permissions:
1719
issues: write

0 commit comments

Comments
 (0)