Skip to content

Commit 8e9e276

Browse files
committed
fix issues connecting to database
1 parent ab755ec commit 8e9e276

2 files changed

Lines changed: 11 additions & 4 deletions

File tree

.env.example

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,4 @@ PORT = # port to host webserver own
66
DB_USERNAME = # Postgresql Username
77
DB_PASSWORD = # Postgresql Password
88
DB_HOST = # Database host IP
9-
DB_NAME = # Database name
10-
NOREPLY_EMAIL = # Actual gmail email
11-
CUSTOM_EMAIL = # Custom domain email to use
12-
NOREPLY_APP_PASSWORD = # 2fa app password
9+
DB_NAME = # Database name

docker-compose.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
version: '3'
2+
services:
3+
web:
4+
ports:
5+
- "4000:4000"
6+
volumes:
7+
- .:/app
8+
build: .
9+
env_file:
10+
- .env

0 commit comments

Comments
 (0)