Compare commits

..

1 commit

Author SHA1 Message Date
Renovate Bot
43d6de1439 chore(deps): update renovate/renovate docker tag to v40
All checks were successful
continuous-integration/drone/push Build is passing
2025-05-21 00:05:43 +00:00
4 changed files with 2 additions and 30 deletions

View file

@ -1,3 +1,4 @@
elixir 1.18.3-otp-27
postgres 17.2
erlang 27.3
just 1.40.0

View file

@ -1,4 +1,4 @@
run: install-dependencies start-database migrate-database
run: install-dependencies migrate-database
mix phx.server
install-dependencies:
@ -10,9 +10,6 @@ migrate-database:
reset-database:
mix ash.reset
start-database:
docker compose up -d
ci-dev: lint audit test
lint:

View file

@ -5,7 +5,6 @@ config :mv, Mv.Repo,
username: "postgres",
password: "postgres",
hostname: "localhost",
port: 5000,
database: "mv_dev",
stacktrace: true,
show_sensitive_data_on_connection_error: true,

View file

@ -1,25 +0,0 @@
version: "3.5"
services:
db:
image: postgres:17.2-alpine
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: mv_dev
volumes:
- type: volume
source: postgres-data
target: /var/lib/postgresql/data
volume:
nocopy: true
ports:
- "5000:5432"
networks:
- local
networks:
local:
volumes:
postgres-data: