aboutsummaryrefslogtreecommitdiff
path: root/communities
diff options
context:
space:
mode:
Diffstat (limited to 'communities')
-rw-r--r--communities/red-right-hand/174bg.net/production/.env.174bg-net.example5
-rw-r--r--communities/red-right-hand/174bg.net/production/.env.example8
-rw-r--r--communities/red-right-hand/174bg.net/production/.env.postgres.example1
-rw-r--r--communities/red-right-hand/174bg.net/production/docker-compose.yaml6
4 files changed, 11 insertions, 9 deletions
diff --git a/communities/red-right-hand/174bg.net/production/.env.174bg-net.example b/communities/red-right-hand/174bg.net/production/.env.174bg-net.example
deleted file mode 100644
index a2c6b85..0000000
--- a/communities/red-right-hand/174bg.net/production/.env.174bg-net.example
+++ /dev/null
@@ -1,5 +0,0 @@
-# openssl rand -base64 32
-BETTER_AUTH_SECRET=
-
-# base URL of your app
-BETTER_AUTH_URL= \ No newline at end of file
diff --git a/communities/red-right-hand/174bg.net/production/.env.example b/communities/red-right-hand/174bg.net/production/.env.example
new file mode 100644
index 0000000..75db2a7
--- /dev/null
+++ b/communities/red-right-hand/174bg.net/production/.env.example
@@ -0,0 +1,8 @@
+BETTER_AUTH_SECRET=
+BETTER_AUTH_URL=
+
+POSTGRES_PASSWORD=
+POSTGRES_HOST=
+
+DISCORD_CLIENT_ID=
+DISCORD_CLIENT_SECRET= \ No newline at end of file
diff --git a/communities/red-right-hand/174bg.net/production/.env.postgres.example b/communities/red-right-hand/174bg.net/production/.env.postgres.example
deleted file mode 100644
index 795f3af..0000000
--- a/communities/red-right-hand/174bg.net/production/.env.postgres.example
+++ /dev/null
@@ -1 +0,0 @@
-POSTGRES_PASSWORD= \ No newline at end of file
diff --git a/communities/red-right-hand/174bg.net/production/docker-compose.yaml b/communities/red-right-hand/174bg.net/production/docker-compose.yaml
index 333c058..7abb3bb 100644
--- a/communities/red-right-hand/174bg.net/production/docker-compose.yaml
+++ b/communities/red-right-hand/174bg.net/production/docker-compose.yaml
@@ -5,13 +5,13 @@ services:
ports:
- "3000:3000/tcp"
- "3000:3000/udp"
- env_file: .env.174bg-net # we don't include this file for obvious reasons, but it should contain the necessary environment variables for the application to run
+ env_file: .env
postgres:
image: postgres:18
- env_file: .env.postgres
+ env_file: .env
ports:
- "5432:5432"
volumes:
- - postgres-data:/var/lib/postgresql/data
+ - ./postgres:/var/lib/postgresql
restart: unless-stopped