We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ab755ec commit 8e9e276Copy full SHA for 8e9e276
2 files changed
.env.example
@@ -6,7 +6,4 @@ PORT = # port to host webserver own
6
DB_USERNAME = # Postgresql Username
7
DB_PASSWORD = # Postgresql Password
8
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
+DB_NAME = # Database name
docker-compose.yml
@@ -0,0 +1,10 @@
1
+version: '3'
2
+services:
3
+ web:
4
+ ports:
5
+ - "4000:4000"
+ volumes:
+ - .:/app
+ build: .
+ env_file:
+ - .env
0 commit comments