Compare commits

..

2 Commits

Author SHA1 Message Date
cuddle-please
9aa77ebdf1 chore(release): 0.3.0
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing
2025-01-12 22:08:02 +00:00
187423d5f4
feat: add port as string
All checks were successful
continuous-integration/drone/push Build is passing
Signed-off-by: kjuulh <contact@kjuulh.io>
2025-01-12 23:07:33 +01:00
4 changed files with 7 additions and 4 deletions

View File

@ -6,7 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased] ## [Unreleased]
## [0.2.1] - 2025-01-12 ## [0.3.0] - 2025-01-12
### Added
- add port as string
### Fixed ### Fixed
- *(deps)* update rust crate uuid to v1.11.1 - *(deps)* update rust crate uuid to v1.11.1

View File

@ -14,4 +14,4 @@ dotenv = { version = "0.15" }
flux-releaser = { git = "https://git.front.kjuulh.io/kjuulh/flux-releaser", branch = "main" } flux-releaser = { git = "https://git.front.kjuulh.io/kjuulh/flux-releaser", branch = "main" }
[workspace.package] [workspace.package]
version = "0.2.1" version = "0.3.0"

View File

@ -101,7 +101,7 @@ metadata:
data: data:
DATABASE_TYPE: postgresql DATABASE_TYPE: postgresql
DATABASE_HOST: {{ environment }}.postgresql.kjuulh.app DATABASE_HOST: {{ environment }}.postgresql.kjuulh.app
DATABASE_PORT: {{ port }} DATABASE_PORT: "{{ port }}"
DATABASE_USER: {{ vars.cuddle_vars.service | replace("-", "_") }} DATABASE_USER: {{ vars.cuddle_vars.service | replace("-", "_") }}
DATABASE_DB: {{ vars.cuddle_vars.service | replace("-", "_") }} DATABASE_DB: {{ vars.cuddle_vars.service | replace("-", "_") }}

View File

@ -7,6 +7,6 @@ metadata:
data: data:
DATABASE_TYPE: postgresql DATABASE_TYPE: postgresql
DATABASE_HOST: dev.postgresql.kjuulh.app DATABASE_HOST: dev.postgresql.kjuulh.app
DATABASE_PORT: 5433 DATABASE_PORT: "5433"
DATABASE_USER: service DATABASE_USER: service
DATABASE_DB: service DATABASE_DB: service