Skip to content

Commit 1432ff2

Browse files
committed
Add development files
1 parent adffc52 commit 1432ff2

File tree

2 files changed

+22
-0
lines changed

2 files changed

+22
-0
lines changed

Diff for: .mise.toml

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
[env]
2+
DATABASE_URL = "postgres://postgres:secret@localhost/ecto_network_test"
3+
4+
[tools]
5+
erlang = "latest"
6+
elixir = "latest"

Diff for: docker-compose.yml

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
---
2+
version: "3"
3+
name: ecto_network
4+
5+
services:
6+
postgres:
7+
image: postgres:14
8+
environment:
9+
POSTGRES_PASSWORD: secret
10+
volumes:
11+
- "pg_data:/var/lib/postgresql/data"
12+
ports:
13+
- "5432:5432"
14+
15+
volumes:
16+
pg_data:

0 commit comments

Comments
 (0)