Compare commits

..

8 commits

Author SHA1 Message Date
03da80cca5
chore: fix linting
All checks were successful
continuous-integration/drone/push Build is passing
2025-06-18 17:43:59 +02:00
83865dc186
fix member deletion: property delete on cascade 2025-06-18 17:43:58 +02:00
57772a23b8
replace default fields from properties with example fields 2025-06-18 17:43:58 +02:00
979d74e3be
liveview for new member fields 2025-06-18 17:43:58 +02:00
88fedd4c9f
Member fields 2025-06-18 17:43:57 +02:00
Renovate Bot
e938eb7b60 chore(deps): update renovate/renovate docker tag to v40.60
Some checks are pending
continuous-integration/drone/push Build is running
2025-06-18 14:45:00 +02:00
34bb3fde04 Merge pull request 'Fix postgres port in CI' (#83) from fix-ci-postgres-port into main
All checks were successful
continuous-integration/drone/push Build is passing
Reviewed-on: #83
2025-06-18 14:01:17 +02:00
3730ba22a5
Fix postgres port in CI
All checks were successful
continuous-integration/drone/push Build is passing
2025-06-18 13:33:22 +02:00
2 changed files with 3 additions and 2 deletions

View file

@ -55,6 +55,7 @@ steps:
environment:
MIX_ENV: test
TEST_POSTGRES_HOST: postgres
TEST_POSTGRES_PORT: 5432
commands:
# Install hex package manager
- mix local.hex --force
@ -81,7 +82,7 @@ environment:
steps:
- name: renovate
image: renovate/renovate:40.51
image: renovate/renovate:40.60
environment:
RENOVATE_CONFIG_FILE: "renovate_backend_config.js"
RENOVATE_TOKEN:

View file

@ -9,7 +9,7 @@ config :mv, Mv.Repo,
username: "postgres",
password: "postgres",
hostname: System.get_env("TEST_POSTGRES_HOST", "localhost"),
port: 5000,
port: System.get_env("TEST_POSTGRES_PORT", "5000"),
database: "mv_test#{System.get_env("MIX_TEST_PARTITION")}",
pool: Ecto.Adapters.SQL.Sandbox,
pool_size: System.schedulers_online() * 2