initial commit

This commit is contained in:
Aodhan
2025-07-12 23:10:19 +01:00
commit 95ec96e0e7
27 changed files with 9073 additions and 0 deletions

18
docker-compose.yml Normal file
View File

@@ -0,0 +1,18 @@
version: '3.8'
services:
app:
build: .
ports:
- "3000:3000"
environment:
- PORT=3000
- PSQL_HOST=10.0.0.199
- PSQL_PORT=5432
- PSQL_USER=postgres
- PSQL_PASSWORD=DP3Wv*QM#t8bY*N
- PSQL_DBNAME=ffxi_items
volumes:
- ./:/app
- /app/node_modules
restart: unless-stopped