From 166d879f7d565d12d74a4b146ca0058148eef5a8 Mon Sep 17 00:00:00 2001
From: Michael Reuscher <michael.reuscher@desy.de>
Date: Wed, 12 Jul 2023 17:48:04 +0200
Subject: [PATCH] README Update and new entry_point

---
 visualizer/README.md | 6 +++---
 visualizer/setup.py  | 2 +-
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/visualizer/README.md b/visualizer/README.md
index 3f71031..16c3730 100644
--- a/visualizer/README.md
+++ b/visualizer/README.md
@@ -11,13 +11,13 @@ if not:
 
 1. Navigate to /detectorwritesim/controller
 2. Create a new Python3.9 or higher virtual environment:
-   python3 -m venv cenv
+   python3 -m venv visualizerenv
 3. Activate the environment:
-   source cenv/bin/activate
+   source visualizerenv/bin/activate
 4. Build the controller:
    python3 setup.py install
 
 Now you have completed the setup process, 
 you can start the controller by entering the following command:
 
-controller_run
\ No newline at end of file
+visualizer_run
\ No newline at end of file
diff --git a/visualizer/setup.py b/visualizer/setup.py
index 48481f6..3f77028 100644
--- a/visualizer/setup.py
+++ b/visualizer/setup.py
@@ -14,7 +14,7 @@ setup(
     ],
     entry_points={
         'console_scripts': [
-            'visualizer=visualizer.main:main'
+            'visualizer_run=visualizer.main:main'
         ]
     }
 )
-- 
GitLab