diff options
| author | ivar <i@oiee.no> | 2023-11-12 00:08:21 +0100 |
|---|---|---|
| committer | ivar <i@oiee.no> | 2023-11-12 00:08:21 +0100 |
| commit | 9631e71303a4a296fee0edf40c4f7bdf7800bd8f (patch) | |
| tree | abf3b84331430d5dab795aed2838744893d66094 | |
| parent | d9a50ca2ef6060eed59381f31c7516277ebe4c69 (diff) | |
| download | greatoffice-9631e71303a4a296fee0edf40c4f7bdf7800bd8f.tar.xz greatoffice-9631e71303a4a296fee0edf40c4f7bdf7800bd8f.zip | |
Remove obsolete files
| -rw-r--r-- | code/api/.build.yaml | 23 | ||||
| -rw-r--r-- | code/api/CHANGELOG.md | 123 | ||||
| -rw-r--r-- | code/api/cliff.toml | 62 |
3 files changed, 0 insertions, 208 deletions
diff --git a/code/api/.build.yaml b/code/api/.build.yaml deleted file mode 100644 index 412cd17..0000000 --- a/code/api/.build.yaml +++ /dev/null @@ -1,23 +0,0 @@ -image: ubuntu/lts -packages: - - docker.io -secrets: - - ea28f7fe-b300-4b79-addf-d487ed6eb1ef - - b6c0403d-10a9-4238-89cc-5402dc0c9fe5 -sources: - - git@git.ivar.systems:greatoffice -tasks: - - setup: | - echo "export IMAGE_NAME=greatoffice/server - export HUB_NAME=dr.ivar.systems/greatoffice/server - export CURRENT_VERSION=$(cat ~/greatoffice/server/.version) - export CURRENT_VERSION_INT=${CURRENT_VERSION//[!0-9]/} - export NEW_VERSION=v$(CURRENT_VERSION_INT+1)-server" >> .buildenv - - build: | - sudo docker build -t $IMAGE_NAME:$NEW_VERSION ~/greatoffice/server - - publish: | - cat ~/.dockerpassword | sudo docker login dr.ivar.systems -u builder --password-stdin - sudo docker tag $IMAGE_NAME:$NEW_VERSION $HUB_NAME:$NEW_VERSION - sudo docker tag $IMAGE_NAME:$NEW_VERSION $HUB_NAME:latest - sudo docker push -a - complete-build()
\ No newline at end of file diff --git a/code/api/CHANGELOG.md b/code/api/CHANGELOG.md deleted file mode 100644 index 88710c3..0000000 --- a/code/api/CHANGELOG.md +++ /dev/null @@ -1,123 +0,0 @@ -# Changelog - -## [unreleased] - -### Miscellaneous Tasks - -- Bump version -- Update CHANGELOG.md for v41-server-dev - -### Refactor - -- Implement caching in VaultService and use VaultService instead of IOptions - -## [unreleased] - -### Miscellaneous Tasks - -- Bump version -- Update CHANGELOG.md for v40-server-dev - -### Refactor - -- Use Vault to get configuration - -## [unreleased] - -### Features - -- !WIP start implementation of svelte-query - -### Miscellaneous Tasks - -- Bump version -- Remove logging of quartz db host -- Update CHANGELOG.md for v6-projects-dev -- Bump version -- Bump version -- Bump version -- Update CHANGELOG.md for v39-server-dev - -### Refactor - -- Use Vault to get configuration -- Small changes on button style -- Add a small box-shadow - -## [unreleased] - -### Bug Fixes - -- !WIP flickering dropdown on multi dropdowns with new focus strategy -- Fix route matching when deciding which tab is open - -### Miscellaneous Tasks - -- Bump version -- Update CHANGELOG.md for v22-server -- Bump version -- Update CHANGELOG.md for v15-portal-dev -- Bump version -- Bump version -- Update CHANGELOG.md for v14-portal-dev -- Bump version -- Bump version -- Bump version -- Update CHANGELOG.md for v38-server-dev - -### Refactor - -- Dont loose focus on search input when navigating results -- Make optional base fields nullable -- Remove text -- Rename accounts to portal -- Rename accounts to portal -- Rename accounts to portal -- Rename noResultsText - -## [unreleased] - -### Bug Fixes - -- !WIP flickering dropdown on multi dropdowns with new focus strategy -- Fix route matching when deciding which tab is open - -### Miscellaneous Tasks - -- Bump version -- Update CHANGELOG.md for v15-portal-dev -- Bump version -- Bump version -- Update CHANGELOG.md for v14-portal-dev -- Bump version -- Bump version -- Bump version -- Update CHANGELOG.md for v37-server-dev -- Bump version -- Bump version -- Update CHANGELOG.md for v22-server - -### Refactor - -- Dont loose focus on search input when navigating results -- Make optional base fields nullable -- Remove text -- Rename accounts to portal -- Rename accounts to portal -- Rename accounts to portal -- Rename noResultsText - -## [unreleased] - -### Miscellaneous Tasks - -- Bump version -- Update CHANGELOG.md for v37-server-dev - -## [unreleased] - -### Miscellaneous Tasks - -- Bump version -- Update CHANGELOG.md for v21-server - diff --git a/code/api/cliff.toml b/code/api/cliff.toml deleted file mode 100644 index 7299951..0000000 --- a/code/api/cliff.toml +++ /dev/null @@ -1,62 +0,0 @@ -# configuration file for git-cliff (0.1.0) - -[changelog] -# changelog header -header = """ -# Changelog\n -""" -# template for the changelog body -# https://tera.netlify.app/docs/#introduction -body = """ -{% if version %}\ - ## [{{ version | trim_start_matches(pat="v") }}] - {{ timestamp | date(format="%Y-%m-%d") }} -{% else %}\ - ## [unreleased] -{% endif %}\ -{% for group, commits in commits | group_by(attribute="group") %} - ### {{ group | upper_first }} - {% for commit in commits %} - - {% if commit.breaking %}[**breaking**] {% endif %}{{ commit.message | upper_first }}\ - {% endfor %} -{% endfor %}\n -""" -# remove the leading and trailing whitespace from the template -trim = true -# changelog footer -footer = """ -<!-- generated by git-cliff --> -""" - -[git] -# parse the commits based on https://www.conventionalcommits.org -conventional_commits = true -# filter out the commits that are not conventional -filter_unconventional = true -# regex for preprocessing the commit messages -commit_preprocessors = [ - { pattern = "([ \\n])(([a-f0-9]{7})[a-f0-9]*)", replace = "${1}commit # [${3}](https://git.ivar.systems/greatoffice/commit/${2})" }, - { pattern = "https://git.ivar.systems/greatoffice/commit/([a-f0-9]{7})[a-f0-9]*", replace = "commit # [${1}](${0})" }, -] -# regex for parsing and grouping commits -commit_parsers = [ - { message = "^feat", group = "Features" }, - { message = "^fix", group = "Bug Fixes" }, - { message = "^doc", group = "Documentation" }, - { message = "^perf", group = "Performance" }, - { message = "^refactor", group = "Refactor" }, - { message = "^style", group = "Styling" }, - { message = "^test", group = "Testing" }, - { message = "^chore", group = "Miscellaneous Tasks" }, -] -# filter out the commits that are not matched by commit parsers -filter_commits = true -# glob pattern for matching git tags -tag_pattern = "v.*" -# regex for skipping tags -skip_tags = "v0.1.0-beta.1" -# regex for ignoring tags -ignore_tags = "" -# sort the tags chronologically -date_order = true -# sort the commits inside sections by oldest/newest order -sort_commits = "newest" |
