Skip to content

Commit 313b2e1

Browse files
committed
Replace vibra references
1 parent 87c763d commit 313b2e1

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

CONTRIBUTING.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@ inside this environment as follows:
3838
```
3939
uv run <your command here>
4040
```
41-
For example, to run VIBRA the following command is required:
41+
For example, to run OpenPulse the following command is required:
4242
```
43-
uv run python -m vibra
43+
uv run python -m pulse
4444
```
4545
For more information check out [uv documentation](https://docs.astral.sh/uv/).
4646

@@ -51,7 +51,7 @@ only available through repositories such as conda forge.
5151

5252
Download and install [conda-forge](https://conda-forge.org/download/).
5353
It is recommended to check the option *Add Miniforge3 to my PATH environment variable* in the program installation setup.
54-
Once conda-forge was installed, it is possible to enable the MUMPS solver in Vibra. To enable this solver we need to use conda instead of uv.
54+
Once conda-forge was installed, it is possible to enable the MUMPS solver in OpenPulse. To enable this solver we need to use conda instead of uv.
5555
To generate the conda environment, just run:
5656
```
5757
conda env create -f environment.yml
@@ -64,14 +64,14 @@ conda init powershell
6464
```
6565
And then restart the `powershell` window.
6666

67-
After environment generation, we can activate and run Vibra by running the following commands:
67+
After environment generation, we can activate and run OpenPulse by running the following commands:
6868
```
69-
conda activate VIBRA
69+
conda activate pulse
7070
```
7171

7272
Finally, enter the following command to execute the application:
7373
```
74-
python -m vibra
74+
python -m pulse
7575
```
7676

7777
If some package changed since the generation, the environment can be updated using the following command:
@@ -113,7 +113,7 @@ Pyinstaller is used to create executables.
113113
In linux run the following command to create a folder containing
114114
a executable and its dependencies.
115115
```
116-
uv run pyinstaller vibra.spec --no-confirm
116+
uv run pyinstaller pulse.spec --no-confirm
117117
```
118118

119119
## Windows
@@ -128,8 +128,8 @@ You may also need to add it to your Windows path.
128128
Given that InnoSetup is correctly installed and set to path,
129129
to create a installer in windows run:
130130
```
131-
uv run pyinstaller vibra.spec --noconfirm
132-
ISCC.exe /O"dist" /F"vibra-setup" "vibra.iss"
131+
uv run pyinstaller pulse.spec --noconfirm
132+
ISCC.exe /O"dist" /F"pulse-setup" "pulse.iss"
133133
```
134134
This process might take a while, but in the end your installer will appear inside the `dist` folder, named as `open-pulse-setup-x64`.
135135

0 commit comments

Comments
 (0)