New Filestructure for Docker

This commit is contained in:
2026-07-31 23:53:14 +02:00
parent 1e10ed4de8
commit 5bcf2a3546
239 changed files with 710 additions and 2000 deletions
+3 -3
View File
@@ -9,10 +9,10 @@ const envPath = path.resolve(__dirname, '..', 'config', '.env.redis');
dotenv.config({ path: envPath });
const redisClient = createClient({
password: process.env.REDDIS_PASSWORD,
password: process.env.REDIS_PASSWORD,
socket: {
host: process.env.REDDIS_HOST,
port: process.env.REDDIS_PORT
host: process.env.REDIS_HOST || 'redis',
port: process.env.REDIS_PORT || 6379
}
});