From 90069ebc567e518521ccbd7a02677390616b6c09 Mon Sep 17 00:00:00 2001 From: Aodhan Date: Tue, 8 Jul 2025 23:12:26 +0100 Subject: [PATCH] Added example env file --- .env.example | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .env.example diff --git a/.env.example b/.env.example new file mode 100644 index 0000000..1435b5a --- /dev/null +++ b/.env.example @@ -0,0 +1,15 @@ +# ---------------------------- +# Example environment file for MOG APP Docker deployment +# Copy this file to `.env` at the project root and adjust the values +# ---------------------------- + +# PostgreSQL connection details (database is expected to run on the Docker host) +PSQL_HOST=127.0.0.1 +PSQL_PORT=5432 +PSQL_USER=postgres +PSQL_PASSWORD=postgres +PSQL_DBNAME=ffxi_items + +# Host ports to expose the containers (edit if they clash) +API_PORT=8000 +WEB_PORT=3050