We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 409f9d5 commit 22bb3d3Copy full SHA for 22bb3d3
2 files changed
Makefile
@@ -1,4 +1,7 @@
1
-include .env
+ifneq (,$(wildcard ./.env))
2
+ include .env
3
+ export
4
+endif
5
6
.PHONY: install test clean lint lint-fix format migrate-new migrate-up migrate-down migrate-dump migrate-reset
7
render.yaml
@@ -13,6 +13,20 @@ services:
13
value: 1.7.1
14
- key: PYTHON_VERSION
15
value: 3.12.1
16
+ - key: POSTGRES_USER
17
+ fromDatabase:
18
+ name: basic-foundation-postgres
19
+ property: user
20
+ - key: POSTGRES_PASSWORD
21
22
23
+ property: password
24
+ - key: POSTGRES_DB
25
26
27
+ property: database
28
+ - key: POSTGRES_PORT
29
+ value: 5432
30
databases:
31
- name: basic-foundation-postgres
32
databaseName: foundation
0 commit comments