From 4570b086eaa67865b95e053fe1fc85905a7b3f75 Mon Sep 17 00:00:00 2001 From: Cyrille Derche Date: Sat, 13 Apr 2024 19:52:59 +0200 Subject: [PATCH] add .env.example --- .env.example | 21 +++++++++++++-------- 1 file changed, 13 insertions(+), 8 deletions(-) diff --git a/.env.example b/.env.example index 663c73c..dbcd4a8 100644 --- a/.env.example +++ b/.env.example @@ -1,11 +1,16 @@ -NODE_ENV=development -PORT=3000 +TELEGRAM_TOKEN=GENERATE_WITH_BOTFATHER -API_ID=YOUR_TELEGRAM_API_ID -API_HASH=YOUR_TELEGRAM_API_HASH -SESSION=YOUR_TELEGRAM_SESSION +RMQ_HOST=localhost +RMQ_PORT=5672 +RMQ_USER=guest +RMQ_PASS=guest -NEO4J_HOST=neo4j +MONGO_HOST=localhost +MONGO_PORT=27017 +MONGO_USER=root +MONGO_PASS=pass + +NEO4J_HOST=localhost NEO4J_PORT=7687 -NEO4J_USERNAME=neo4j -NEO4J_PASSWORD=password \ No newline at end of file +NEO4J_USER=neo4j +NEO4J_PASS=password \ No newline at end of file