We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ae383fb commit 231d766Copy full SHA for 231d766
1 file changed
panel/app/telegram_bot.py
@@ -517,7 +517,8 @@ async def create_backup(self) -> Optional[str]:
517
break
518
519
if env_file:
520
- shutil.copy2(env_file, backup_dir / ".env")
+ # Use 'env' instead of '.env' to make it visible (not hidden)
521
+ shutil.copy2(env_file, backup_dir / "env")
522
logger.info(f"Backed up .env from: {env_file}")
523
524
# Find and backup docker-compose.yml
0 commit comments