Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 0 additions & 11 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,16 +19,5 @@
"PYTEST_RAISE": "1",
},
},
{
"name": "Python Debugger: Virtac",
"type": "debugpy",
"request": "launch",
"program": "/venv/bin/virtac",
"console": "integratedTerminal",
"env": {
"EPICS_CA_SERVER_PORT": "7064",
"EPICS_CA_REPEATER_PORT": "7065",
},
},
]
}
11 changes: 4 additions & 7 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,13 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
graphviz \
&& rm -rf /var/lib/apt/lists/*

WORKDIR /virtac
COPY . /virtac/
WORKDIR /atip
COPY . /atip/

# Set up a virtual environment and put it in PATH
RUN python -m venv /venv
ENV PATH=/venv/bin:$PATH
RUN pip install .

ENV EPICS_CA_SERVER_PORT=8064
ENV EPICS_CA_REPEATER_PORT=8065

ENTRYPOINT [ "virtac" ]
CMD ["-v"]
ENTRYPOINT [ "atip" ]
CMD ["--version"]
1 change: 0 additions & 1 deletion docs/_api.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,3 @@ API
:recursive:

atip
virtac
1 change: 0 additions & 1 deletion docs/reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ Technical reference material including APIs and release notes.
:glob:

Atip API <_api/atip>
Virtac API <_api/virtac>
genindex
Release Notes <https://github.com/DiamondLightSource/atip/releases>
```
1 change: 0 additions & 1 deletion docs/tutorials.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,4 @@ Tutorials for installation and typical usage. New users start here.
tutorials/installation
tutorials/overview
tutorials/atip_example
tutorials/virtac_example
```
2 changes: 1 addition & 1 deletion docs/tutorials/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ publishing the same control system interface as the live machine. At Diamond
Light Source this has been implemented with EPICS, using
[PythonSoftIOC](<https://github.com/Araneidae/pythonIoc>)

More documentation on how to use the virtual accelerator can be found [here](<https://github.com/DiamondLightSource/atip/tutorials/VIRTAC_example>)
The diamond virtual accelerator can be found [here](<https://github.com/DiamondLightSource/virtac>)


## Helpful tips:
Expand Down
159 changes: 0 additions & 159 deletions docs/tutorials/virtac_example.md

This file was deleted.

1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ dev = [

[project.scripts]
atip = "atip.__main__:main"
virtac = "virtac.atip_ioc_entry:main"

[project.urls]
GitHub = "https://github.com/DiamondLightSource/atip"
Expand Down
2 changes: 1 addition & 1 deletion src/atip/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from argparse import ArgumentParser
from collections.abc import Sequence

from . import __version__
from atip import __version__

__all__ = ["main"]

Expand Down
7 changes: 0 additions & 7 deletions src/virtac/__init__.py

This file was deleted.

133 changes: 0 additions & 133 deletions src/virtac/atip_ioc_entry.py

This file was deleted.

Loading