Mirror of
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Update GitHub template files

+549 -225
+8
.changeset/README.md
··· 1 + # Changesets 2 + 3 + Hello and welcome! This folder has been automatically generated by `@changesets/cli`, a build tool that works 4 + with multi-package repos, or single-package repos to help you version and publish your code. You can 5 + find the full documentation for it [in our repository](https://github.com/changesets/changesets) 6 + 7 + We have a quick list of common questions to get you started engaging with this project in 8 + [our documentation](https://github.com/changesets/changesets/blob/main/docs/common-questions.md)
+14
.changeset/config.json
··· 1 + { 2 + "$schema": "https://unpkg.com/@changesets/config@3.0.3/schema.json", 3 + "changelog": [ 4 + "@changesets/changelog-github", 5 + { "repo": "trueberryless-org/mutanuq" } 6 + ], 7 + "commit": false, 8 + "fixed": [], 9 + "linked": [], 10 + "access": "public", 11 + "baseBranch": "main", 12 + "updateInternalDependencies": "patch", 13 + "ignore": [] 14 + }
+7 -24
.dockerignore
··· 1 - **/.dockerignore 2 - **/.env 1 + **/node_modules/ 2 + **/dist 3 3 **/.git 4 - **/.gitignore 5 - **/.project 6 - **/.settings 7 - **/.toolstarget 8 - **/.vs 9 - **/.vscode 10 - **/.idea 11 - **/*.*proj.user 12 - **/*.dbmdl 13 - **/*.jfm 14 - **/azds.yaml 15 - **/bin 16 - **/charts 17 - **/docker-compose* 18 - **/Dockerfile* 19 - **/node_modules 20 - **/npm-debug.log 21 - **/obj 22 - **/secrets.dev.yaml 23 - **/values.dev.yaml 24 - LICENSE 25 - README.md 4 + npm-debug.log 5 + .coverage 6 + .coverage.* 7 + .env 8 + .aws
+202
.github/workflows/deployment.yaml
··· 1 + name: Deployment 2 + 3 + on: 4 + push: 5 + branches: [main] 6 + workflow_dispatch: 7 + 8 + # Automatically cancel in-progress actions on the same branch 9 + concurrency: 10 + group: ${{ github.workflow }}-${{ github.event_name == 'pull_request_target' && github.head_ref || github.ref }} 11 + cancel-in-progress: true 12 + 13 + env: 14 + REGISTRY: docker.io 15 + IMAGE_OWNER: trueberryless 16 + IMAGE_NAME: mutanuq 17 + NODE_VERSION: 20 18 + 19 + jobs: 20 + changes: 21 + name: Filter 22 + runs-on: ubuntu-latest 23 + outputs: 24 + starlight: ${{ steps.filter.outputs.starlight }} 25 + steps: 26 + - name: Check out the repo 27 + uses: actions/checkout@v4 28 + 29 + - uses: dorny/paths-filter@v3 30 + id: filter 31 + with: 32 + filters: | 33 + starlight: 34 + - 'starlight/**' 35 + 36 + changesets: 37 + name: Changesets 38 + runs-on: ubuntu-latest 39 + outputs: 40 + hasChangesets: ${{ steps.changesets.outputs.hasChangesets }} 41 + permissions: 42 + contents: write 43 + pull-requests: write 44 + steps: 45 + - name: Checkout Repo 46 + uses: actions/checkout@v4 47 + 48 + - name: Setup PNPM 49 + uses: pnpm/action-setup@v3 50 + 51 + - name: Setup Node 52 + uses: actions/setup-node@v4 53 + with: 54 + node-version: ${{ env.NODE_VERSION }} 55 + cache: "pnpm" 56 + 57 + - name: Install Dependencies 58 + run: pnpm i 59 + 60 + - name: Create Release Pull Request 61 + id: changesets 62 + uses: changesets/action@v1 63 + with: 64 + commit: "[ci] release" 65 + title: "[ci] release" 66 + env: 67 + GITHUB_TOKEN: ${{ secrets.PUBLIC_GITHUB_TOKEN }} 68 + NPM_TOKEN: ${{ secrets.NPM_TOKEN }} 69 + 70 + image-tag: 71 + name: Image Tag 72 + runs-on: ubuntu-latest 73 + outputs: 74 + IMAGE_TAG: ${{ env.IMAGE_TAG }} 75 + steps: 76 + - name: Check out the repo 77 + uses: actions/checkout@v4 78 + 79 + - name: Read version from package.json 80 + id: get_version 81 + run: | 82 + VERSION=$(jq -r '.version' starlight/package.json) 83 + echo "IMAGE_TAG=$VERSION" >> $GITHUB_ENV 84 + 85 + deployment: 86 + needs: [changes, changesets, image-tag] 87 + if: > 88 + ( 89 + needs.changesets.outputs.hasChangesets == 'false' && 90 + ( 91 + contains(github.event.head_commit.message, 'deploy') || 92 + contains(github.event.head_commit.message, '[ci] release') 93 + ) 94 + ) || 95 + github.event_name == 'workflow_dispatch' 96 + runs-on: ubuntu-latest 97 + permissions: 98 + contents: write 99 + steps: 100 + - name: Check out the repo 101 + uses: actions/checkout@v4 102 + with: 103 + fetch-depth: 0 104 + 105 + - name: Setup PNPM 106 + uses: pnpm/action-setup@v3 107 + with: 108 + package_json_file: ./starlight/package.json 109 + 110 + - name: Setup Node 111 + uses: actions/setup-node@v4 112 + with: 113 + node-version: ${{ env.NODE_VERSION }} 114 + cache: pnpm 115 + cache-dependency-path: ./pnpm-lock.yaml 116 + 117 + - name: Install dependencies 118 + run: pnpm install 119 + shell: bash 120 + working-directory: ./starlight 121 + 122 + - name: Build Website 123 + run: pnpm run build 124 + shell: bash 125 + working-directory: ./starlight 126 + 127 + - name: Set up Docker Buildx 128 + uses: docker/setup-buildx-action@v3 129 + 130 + - name: Log in to Docker Hub 131 + uses: docker/login-action@v3 132 + with: 133 + username: ${{ secrets.DOCKER_USERNAME }} 134 + password: ${{ secrets.DOCKER_PASSWORD }} 135 + 136 + - name: Extract metadata (tags, labels) for Docker 137 + id: meta 138 + uses: docker/metadata-action@v5 139 + with: 140 + images: ${{ env.REGISTRY }}/${{ env.IMAGE_OWNER }}/${{ env.IMAGE_NAME }} 141 + 142 + - name: Build and push Docker image 143 + uses: docker/build-push-action@v6 144 + with: 145 + context: . 146 + push: true 147 + tags: | 148 + ${{ env.IMAGE_OWNER }}/${{ env.IMAGE_NAME }}:${{ needs.image-tag.outputs.IMAGE_TAG }} 149 + ${{ env.IMAGE_OWNER }}/${{ env.IMAGE_NAME }}:latest 150 + labels: ${{ steps.meta.outputs.labels }} 151 + 152 + - name: Update deployment.yaml file 153 + run: | 154 + yq eval '.spec.template.spec.containers[0].image = "${{ env.IMAGE_OWNER }}/${{ env.IMAGE_NAME }}:${{ needs.image-tag.outputs.IMAGE_TAG }}"' -i manifest/deployment.yaml 155 + 156 + - uses: stefanzweifel/git-auto-commit-action@v4 157 + with: 158 + commit_message: update deployment.json container image (automated) 159 + 160 + release: 161 + name: Release 162 + needs: [image-tag, deployment] 163 + runs-on: ubuntu-latest 164 + permissions: 165 + contents: write 166 + steps: 167 + - name: Check out the repo 168 + uses: actions/checkout@v4 169 + 170 + - id: extract-changelog 171 + uses: sean0x42/markdown-extract@v2.1.0 172 + with: 173 + file: starlight/CHANGELOG.md 174 + pattern: ${{ needs.image-tag.outputs.IMAGE_TAG }} 175 + 176 + - uses: ncipollo/release-action@v1 177 + id: create_release 178 + with: 179 + tag: ${{ env.IMAGE_NAME }}-docs@${{ needs.image-tag.outputs.IMAGE_TAG }} 180 + makeLatest: true 181 + body: ${{ steps.extract-changelog.outputs.markdown }} 182 + skipIfReleaseExists: true 183 + 184 + - name: Check if release was created 185 + id: check_release 186 + run: | 187 + if [ -z "${{ steps.create_release.outputs.html_url }}" ]; then 188 + echo "RELEASE_SKIPPED=true" >> $GITHUB_ENV 189 + else 190 + echo "RELEASE_SKIPPED=false" >> $GITHUB_ENV 191 + fi 192 + 193 + - name: Discord notification 194 + if: env.RELEASE_SKIPPED == 'false' 195 + env: 196 + DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK_URL }} 197 + uses: Ilshidur/action-discord@0.3.2 198 + with: 199 + args: | 200 + # ${{ env.IMAGE_NAME }}@${{ needs.image-tag.outputs.IMAGE_TAG }} 201 + 202 + ${{ steps.extract-changelog.outputs.markdown }}
+43
.github/workflows/format.yaml
··· 1 + name: Format 2 + 3 + on: 4 + push: 5 + branches: [main] 6 + 7 + jobs: 8 + format: 9 + runs-on: ubuntu-latest 10 + permissions: 11 + contents: write 12 + pull-requests: write 13 + steps: 14 + - uses: actions/checkout@v4 15 + - uses: pnpm/action-setup@v4 16 + with: 17 + run_install: | 18 + - recursive: false 19 + args: [--frozen-lockfile] 20 + - args: [--global, prettier, sort-package-json] 21 + - uses: actions/setup-node@v4 22 + with: 23 + node-version: 20 24 + cache: "pnpm" 25 + - name: Sort package.json 26 + run: find . -name "package.json" -not -path "*/node_modules/*" -exec sort-package-json {} \; 27 + - name: Format with Prettier 28 + run: pnpm prettier --write . 29 + - name: Create Pull Request 30 + uses: peter-evans/create-pull-request@v7 31 + with: 32 + token: ${{ secrets.PUBLIC_GITHUB_TOKEN }} 33 + commit-message: "[ci] format" 34 + committer: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> 35 + author: ${{ github.actor }} <${{ github.actor_id }}+${{ github.actor }}@users.noreply.github.com> 36 + signoff: false 37 + branch: ci-format 38 + delete-branch: true 39 + title: "[ci] format" 40 + body: "This PR was automatically created to sort package.json files in the repository using sort-package-json and to format the repository using prettier." 41 + labels: 🤖 bot 42 + assignees: trueberryless 43 + draft: false
+30
.github/workflows/generate-readme-tree.yaml
··· 1 + name: Add tree changes 2 + 3 + on: 4 + push: 5 + branches: [main] 6 + 7 + jobs: 8 + commit-tree-changes: 9 + runs-on: ubuntu-latest 10 + steps: 11 + - uses: actions/checkout@v3 12 + - name: Write tree outputs to README.md 13 + uses: shirakiya/readme-tree-writer@v2 14 + with: 15 + config_path: .github/readmetreerc.yaml 16 + - name: Create Pull Request 17 + uses: peter-evans/create-pull-request@v7 18 + with: 19 + token: ${{ secrets.PUBLIC_GITHUB_TOKEN }} 20 + commit-message: "[ci] update tree" 21 + committer: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> 22 + author: ${{ github.actor }} <${{ github.actor_id }}+${{ github.actor }}@users.noreply.github.com> 23 + signoff: false 24 + branch: ci-tree 25 + delete-branch: true 26 + title: "[ci] update tree" 27 + body: "This PR was automatically created to update the project structure tree in every `README.md`." 28 + labels: 🤖 bot 29 + assignees: trueberryless 30 + draft: false
+40
.github/workflows/release.yaml
··· 1 + name: Release 2 + 3 + on: 4 + push: 5 + branches: [main] 6 + 7 + jobs: 8 + release: 9 + name: Release 10 + if: ${{ github.repository_owner == 'trueberryless-org' }} 11 + permissions: 12 + contents: write 13 + pull-requests: write 14 + runs-on: ubuntu-latest 15 + steps: 16 + - name: Checkout Repo 17 + uses: actions/checkout@v4 18 + with: 19 + fetch-depth: 0 20 + 21 + - name: Setup PNPM 22 + uses: pnpm/action-setup@v3 23 + 24 + - name: Setup Node 25 + uses: actions/setup-node@v4 26 + with: 27 + node-version: 20 28 + cache: "pnpm" 29 + 30 + - name: Install Dependencies 31 + run: pnpm i 32 + 33 + - name: Create Release Pull Request 34 + uses: changesets/action@v1 35 + with: 36 + version: pnpm run version 37 + commit: "[ci] release" 38 + title: "[ci] release" 39 + env: 40 + GITHUB_TOKEN: ${{ secrets.PUBLIC_GITHUB_TOKEN }}
+36
.github/workflows/welcome-bot.yaml
··· 1 + name: WelcomeBot 2 + 3 + on: 4 + pull_request_target: 5 + branches: [main] 6 + types: [opened] 7 + 8 + permissions: 9 + pull-requests: write 10 + 11 + jobs: 12 + welcome: 13 + name: Welcome First-Time Contributors 14 + runs-on: ubuntu-latest 15 + steps: 16 + - uses: actions/checkout@v4 17 + - name: Convert Repository Name to Title Case 18 + id: convert_repo_name 19 + run: | 20 + REPO_NAME="${{ github.event.repository.name }}" 21 + TITLE_CASE_REPO_NAME=$(echo "$REPO_NAME" | sed 's/-/ /g' | awk '{for(i=1;i<=NF;i++) $i=toupper(substr($i,1,1)) tolower(substr($i,2))} 1') 22 + echo "title_case_repo_name=$TITLE_CASE_REPO_NAME" >> $GITHUB_ENV 23 + - uses: zephyrproject-rtos/action-first-interaction@7e6446f8439d8b4399169880c36a3a12b5747699 24 + with: 25 + repo-token: ${{ secrets.GITHUB_TOKEN }} 26 + pr-opened-message: | 27 + Hello! Thank you for opening your **first PR** to ${{ env.title_case_repo_name }}! ✨ 28 + 29 + Here’s what will happen next: 30 + 31 + 1. Our GitHub bots will run to check your changes. 32 + If they spot any issues you will see some error messages on this PR. 33 + Don’t hesitate to ask any questions if you’re not sure what these mean! 34 + 35 + 2. One or more of our maintainers will take a look and may ask you to make changes. 36 + We try to be responsive, but don’t worry if this takes a few days.
+97 -194
.gitignore
··· 1 - # The following command works for downloading when using Git for Windows: 2 - # curl -LOf http://gist.githubusercontent.com/kmorcinek/2710267/raw/.gitignore 3 - # 4 - # Download this file using PowerShell v3 under Windows with the following comand: 5 - # Invoke-WebRequest https://gist.githubusercontent.com/kmorcinek/2710267/raw/ -OutFile .gitignore 6 - # 7 - # or wget: 8 - # wget --no-check-certificate http://gist.githubusercontent.com/kmorcinek/2710267/raw/.gitignore 9 - 10 - # User-specific files 11 - *.suo 12 - *.user 13 - *.sln.docstates 14 - 15 - # Build results 16 - [Dd]ebug/ 17 - [Rr]elease/ 18 - x64/ 19 - [Bb]in/ 20 - [Oo]bj/ 21 - # build folder is nowadays used for build scripts and should not be ignored 22 - #build/ 23 - 24 - # NuGet Packages 25 - *.nupkg 26 - # The packages folder can be ignored because of Package Restore 27 - **/packages/* 28 - # except build/, which is used as an MSBuild target. 29 - !**/packages/build/ 30 - # Uncomment if necessary however generally it will be regenerated when needed 31 - #!**/packages/repositories.config 32 - 33 - # MSTest test Results 34 - [Tt]est[Rr]esult*/ 35 - [Bb]uild[Ll]og.* 36 - 37 - *_i.c 38 - *_p.c 39 - *.ilk 40 - *.meta 41 - *.obj 42 - *.pch 43 - *.pdb 44 - *.pgc 45 - *.pgd 46 - *.rsp 47 - *.sbr 48 - *.tlb 49 - *.tli 50 - *.tlh 51 - *.tmp 52 - *.tmp_proj 1 + # Logs 2 + logs 53 3 *.log 54 - *.vspscc 55 - *.vssscc 56 - .builds 57 - *.pidb 58 - *.scc 4 + npm-debug.log* 5 + yarn-debug.log* 6 + yarn-error.log* 7 + lerna-debug.log* 8 + .pnpm-debug.log* 59 9 60 - # Visual C++ cache files 61 - ipch/ 62 - *.aps 63 - *.ncb 64 - *.opensdf 65 - *.sdf 66 - *.cachefile 10 + # Diagnostic reports (https://nodejs.org/api/report.html) 11 + report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json 67 12 68 - # Visual Studio profiler 69 - *.psess 70 - *.vsp 71 - *.vspx 13 + # Runtime data 14 + pids 15 + *.pid 16 + *.seed 17 + *.pid.lock 72 18 73 - # Guidance Automation Toolkit 74 - *.gpState 19 + # Directory for instrumented libs generated by jscoverage/JSCover 20 + lib-cov 75 21 76 - # ReSharper is a .NET coding add-in 77 - _ReSharper*/ 78 - *.[Rr]e[Ss]harper 22 + # Coverage directory used by tools like istanbul 23 + coverage 24 + *.lcov 79 25 80 - # TeamCity is a build add-in 81 - _TeamCity* 26 + # nyc test coverage 27 + .nyc_output 82 28 83 - # DotCover is a Code Coverage Tool 84 - *.dotCover 29 + # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) 30 + .grunt 85 31 86 - # NCrunch 87 - *.ncrunch* 88 - .*crunch*.local.xml 32 + # Bower dependency directory (https://bower.io/) 33 + bower_components 89 34 90 - # Installshield output folder 91 - [Ee]xpress/ 35 + # node-waf configuration 36 + .lock-wscript 92 37 93 - # DocProject is a documentation generator add-in 94 - DocProject/buildhelp/ 95 - DocProject/Help/*.HxT 96 - DocProject/Help/*.HxC 97 - DocProject/Help/*.hhc 98 - DocProject/Help/*.hhk 99 - DocProject/Help/*.hhp 100 - DocProject/Help/Html2 101 - DocProject/Help/html 38 + # Compiled binary addons (https://nodejs.org/api/addons.html) 39 + build/Release 102 40 103 - # Click-Once directory 104 - publish/ 41 + # Dependency directories 42 + node_modules/ 43 + jspm_packages/ 105 44 106 - # Publish Web Output 107 - *.Publish.xml 45 + # Snowpack dependency directory (https://snowpack.dev/) 46 + web_modules/ 108 47 109 - # Windows Azure Build Output 110 - csx 111 - *.build.csdef 48 + # TypeScript cache 49 + *.tsbuildinfo 112 50 113 - # Windows Store app package directory 114 - AppPackages/ 51 + # Optional npm cache directory 52 + .npm 115 53 116 - # Others 117 - *.Cache 118 - ClientBin/ 119 - [Ss]tyle[Cc]op.* 120 - ~$* 121 - *~ 122 - *.dbmdl 123 - *.[Pp]ublish.xml 124 - *.pfx 125 - *.publishsettings 126 - modulesbin/ 127 - tempbin/ 54 + # Optional eslint cache 55 + .eslintcache 128 56 129 - # EPiServer Site file (VPP) 130 - AppData/ 57 + # Optional stylelint cache 58 + .stylelintcache 131 59 132 - # RIA/Silverlight projects 133 - Generated_Code/ 60 + # Microbundle cache 61 + .rpt2_cache/ 62 + .rts2_cache_cjs/ 63 + .rts2_cache_es/ 64 + .rts2_cache_umd/ 134 65 135 - # Backup & report files from converting an old project file to a newer 136 - # Visual Studio version. Backup files are not needed, because we have git ;-) 137 - _UpgradeReport_Files/ 138 - Backup*/ 139 - UpgradeLog*.XML 140 - UpgradeLog*.htm 66 + # Optional REPL history 67 + .node_repl_history 141 68 142 - # vim 143 - *.txt~ 144 - *.swp 145 - *.swo 69 + # Output of 'npm pack' 70 + *.tgz 146 71 147 - # Temp files when opening LibreOffice on ubuntu 148 - .~lock.* 149 - 150 - # svn 151 - .svn 72 + # Yarn Integrity file 73 + .yarn-integrity 152 74 153 - # CVS - Source Control 154 - **/CVS/ 75 + # dotenv environment variable files 76 + .env 77 + .env.development.local 78 + .env.test.local 79 + .env.production.local 80 + .env.local 155 81 156 - # Remainings from resolving conflicts in Source Control 157 - *.orig 82 + # parcel-bundler cache (https://parceljs.org/) 83 + .cache 84 + .parcel-cache 158 85 159 - # SQL Server files 160 - **/App_Data/*.mdf 161 - **/App_Data/*.ldf 162 - **/App_Data/*.sdf 86 + # Next.js build output 87 + .next 88 + out 163 89 90 + # Nuxt.js build / generate output 91 + .nuxt 92 + dist 164 93 165 - #LightSwitch generated files 166 - GeneratedArtifacts/ 167 - _Pvt_Extensions/ 168 - ModelManifest.xml 94 + # Gatsby files 95 + .cache/ 96 + # Comment in the public line in if your project uses Gatsby and not Next.js 97 + # https://nextjs.org/blog/next-9-1#public-directory-support 98 + # public 169 99 170 - # ========================= 171 - # Windows detritus 172 - # ========================= 173 - 174 - # Windows image file caches 175 - Thumbs.db 176 - ehthumbs.db 177 - 178 - # Folder config file 179 - Desktop.ini 180 - 181 - # Recycle Bin used on file shares 182 - $RECYCLE.BIN/ 183 - 184 - # OS generated files # 185 - Icon? 186 - 187 - # Mac desktop service store files 188 - .DS_Store 100 + # vuepress build output 101 + .vuepress/dist 189 102 190 - # SASS Compiler cache 191 - .sass-cache 192 - 193 - # Visual Studio 2014 CTP 194 - **/*.sln.ide 195 - 196 - # Visual Studio temp something 197 - .vs/ 198 - 199 - # dotnet stuff 200 - project.lock.json 201 - 202 - # VS 2015+ 203 - *.vc.vc.opendb 204 - *.vc.db 103 + # vuepress v2.x temp and cache directory 104 + .temp 105 + .cache 205 106 206 - # Rider 207 - .idea/ 107 + # Docusaurus cache and generated files 108 + .docusaurus 208 109 209 - # Visual Studio Code 210 - .vscode/ 110 + # Serverless directories 111 + .serverless/ 211 112 212 - # Output folder used by Webpack or other FE stuff 213 - **/node_modules/* 113 + # FuseBox cache 114 + .fusebox/ 214 115 215 - # SpecFlow specific 216 - *.feature.cs 217 - *.feature.xlsx.* 218 - *.Specs_*.html 116 + # DynamoDB Local files 117 + .dynamodb/ 219 118 220 - # UWP Projects 221 - AppPackages/ 119 + # TernJS port file 120 + .tern-port 222 121 223 - ##### 224 - # End of core ignore list, below put you custom 'per project' settings (patterns or path) 225 - ##### 122 + # Stores VSCode versions used for (testing) VSCode extensions 123 + .vscode 124 + .vscode-test 226 125 227 - android/ 228 - ios/ 126 + # yarn v2 127 + .yarn/cache 128 + .yarn/unplugged 129 + .yarn/build-state.yml 130 + .yarn/install-state.gz 131 + .pnp.*
+37
.prettierignore
··· 1 + # Dependency directories 2 + node_modules/ 3 + dist/ 4 + build/ 5 + out/ 6 + 7 + # Lock files 8 + pnpm-lock.yaml 9 + package-lock.json 10 + yarn.lock 11 + 12 + # Build and generated files 13 + *.min.* 14 + *.bundle.* 15 + *.map 16 + 17 + # Git and version control 18 + **/.git 19 + 20 + # Framework-specific files 21 + next-env.d.ts 22 + __generated__/ 23 + 24 + # Test and coverage files 25 + coverage/ 26 + *.spec.* 27 + *.test.* 28 + 29 + # Editor-specific files 30 + .vscode/ 31 + .idea/ 32 + *.sublime-project 33 + *.sublime-workspace 34 + 35 + # OS generated files 36 + .DS_Store 37 + Thumbs.db
+8
.prettierrc
··· 1 + { 2 + "trailingComma": "es5", 3 + "tabWidth": 2, 4 + "semi": true, 5 + "singleQuote": false, 6 + "endOfLine": "lf", 7 + "htmlWhitespaceSensitivity": "css" 8 + }
+1 -1
LICENSE
··· 1 1 MIT License 2 2 3 - Copyright (c) 2024 trueberryless-org 3 + Copyright (c) 2024-present, trueberryless 4 4 5 5 Permission is hereby granted, free of charge, to any person obtaining a copy 6 6 of this software and associated documentation files (the "Software"), to deal
+1 -1
README.md
··· 66 66 67 67 ## License 68 68 69 - Licensed under the MIT license, Copyright © trueberryless-org. 69 + Licensed under the MIT license, Copyright © trueberryless. 70 70 71 71 See [LICENSE](/LICENSE) for more information.
+1 -1
manifest/certificate.yaml
··· 9 9 name: acme-issuer 10 10 kind: ClusterIssuer 11 11 dnsNames: 12 - - 'mutanuq.trueberryless.org' 12 + - "mutanuq.trueberryless.org"
+1 -1
manifest/deployment.yaml
··· 17 17 spec: 18 18 containers: 19 19 - name: mutanuq 20 - image: 'trueberryless/mutanuq:main-9c134afb68657532c7c2d5d4b7588484e80c7f28' 20 + image: "trueberryless/mutanuq" 21 21 imagePullPolicy: Always
+3 -3
manifest/ingress.yaml
··· 17 17 number: 80 18 18 19 19 tls: 20 - - hosts: 21 - - mutanuq.trueberryless.org 22 - secretName: mutanuq 20 + - hosts: 21 + - mutanuq.trueberryless.org 22 + secretName: mutanuq
+20
package.json
··· 1 + { 2 + "name": "mutanuq-monorepo", 3 + "homepage": "https://github.com/trueberryless-org/mutanuq", 4 + "bugs": { 5 + "url": "https://github.com/trueberryless-org/mutanuq/issues" 6 + }, 7 + "repository": { 8 + "type": "git", 9 + "url": "https://github.com/trueberryless-org/mutanuq.git" 10 + }, 11 + "license": "MIT", 12 + "author": "trueberryless <trueberryless@gmail.com> (https://trueberryless.org)", 13 + "scripts": { 14 + "version": "pnpm changeset version && pnpm i --no-frozen-lockfile" 15 + }, 16 + "devDependencies": { 17 + "@changesets/changelog-github": "^0.5.0", 18 + "@changesets/cli": "^2.27.9" 19 + } 20 + }