chore: Let the journey begin

This commit is contained in:
T. R. Bernstein
2025-02-25 00:09:21 +01:00
commit e2699e4916
10 changed files with 116 additions and 0 deletions

18
.editorconfig Normal file
View File

@@ -0,0 +1,18 @@
root = true
[*]
end_of_line = lf
insert_final_newline = true
charset = utf-8
[*.{js,ts,json}]
indent_style = tab
trim_trailing_whitespace = true
tab_width = 4
[*.json]
tab_width = 2
[*.{yml,yaml}]
indent_style = space
indent_size = 2

2
.gitignore vendored Normal file
View File

@@ -0,0 +1,2 @@
node_modules
dist

4
.nova/Configuration.json Normal file
View File

@@ -0,0 +1,4 @@
{
"workspace.art_style" : 0,
"workspace.name" : "HDA CMS"
}

2
.prettierignore Normal file
View File

@@ -0,0 +1,2 @@
node_modules
dist

1
.prettierrc Normal file
View File

@@ -0,0 +1 @@
"@tabshift/prettier-config"

5
LICENSE Normal file
View File

@@ -0,0 +1,5 @@
Copyright (C) Astzweig GmbH & Co. KG - All Rights Reserved
Unauthorized copying of this file, via any medium is strictly prohibited
Proprietary and confidential
Written by T. R. Bernstein <137705289+trbernstein@users.noreply.github.com>, 2024-07-01

39
cog.toml Normal file
View File

@@ -0,0 +1,39 @@
from_latest_tag = false
ignore_merge_commits = false
disable_changelog = false
disable_bump_commit = false
generate_mono_repository_global_tag = true
generate_mono_repository_package_tags = true
branch_whitelist = [
"main",
"release/**"
]
skip_ci = "[skip ci]"
skip_untracked = false
pre_bump_hooks = []
post_bump_hooks = []
pre_package_bump_hooks = [
"echo 'upgrading {{package}}' to {{version}}",
"npm version {{version}}"
]
post_package_bump_hooks = []
tag_prefix = "v"
[git_hooks.commit-msg]
script = """#!/bin/sh
set -e
cog verify --file $1
cog check
"""
[commit_types]
[changelog]
path = "CHANGELOG.md"
authors = [
{ signature = "T. R. Bernstein", username = "trbernstein" }
]
[bump_profiles]
[packages]

13
package.json Normal file
View File

@@ -0,0 +1,13 @@
{
"private": true,
"name": "hda-cms",
"description": "The web CMS system of Haus der Akademien",
"version": "1.0.0",
"author": "T. R. Bernstein <ljspkgs01-project@tabshift.dev>",
"license": "UNLICENSED",
"packageManager": "pnpm@10.4.1",
"devDependencies": {
"@tabshift/prettier-config": "latest",
"prettier": "^3.5.2"
}
}

30
pnpm-lock.yaml generated Normal file
View File

@@ -0,0 +1,30 @@
lockfileVersion: '9.0'
settings:
autoInstallPeers: true
excludeLinksFromLockfile: false
overrides:
'@tabshift/prettier-config': link:../../Library/pnpm/global/5/node_modules/@tabshift/prettier-config
importers:
.:
devDependencies:
'@tabshift/prettier-config':
specifier: link:../../Library/pnpm/global/5/node_modules/@tabshift/prettier-config
version: link:../../Library/pnpm/global/5/node_modules/@tabshift/prettier-config
prettier:
specifier: ^3.5.2
version: 3.5.2
packages:
prettier@3.5.2:
resolution: {integrity: sha512-lc6npv5PH7hVqozBR7lkBNOGXV9vMwROAPlumdBkX0wTbbzPu/U1hk5yL8p2pt4Xoc+2mkT8t/sow2YrV/M5qg==}
engines: {node: '>=14'}
hasBin: true
snapshots:
prettier@3.5.2: {}

2
pnpm-workspace.yaml Normal file
View File

@@ -0,0 +1,2 @@
packages:
- "packages/*"