fix: Fix Unicode encoding issue in backend startup script

- Changed rocket emoji to ASCII [*] for Windows CP1252 compatibility
- This allows the backend to start without UnicodeEncodeError on Windows
This commit is contained in:
ajaysi
2026-03-09 13:40:34 +05:30
parent 098424f696
commit 651bd2b5f0
2 changed files with 99 additions and 1 deletions

View File

@@ -308,7 +308,7 @@ def main():
# Set global verbose flag for utilities
os.environ["ALWRITY_VERBOSE"] = "true" if verbose_mode else "false"
print("🚀 ALwrity Backend Server")
print("[*] ALwrity Backend Server")
print("=" * 40)
print(f"Mode: {'PRODUCTION' if production_mode else 'DEVELOPMENT'}")
print(f"Auto-reload: {'ENABLED' if enable_reload else 'DISABLED'}")