Skip to content

Commit

Permalink
changes to configure new installation (#281)
Browse files Browse the repository at this point in the history
* DOC #213 release notes

* MNT #213 relocate & remove clutter from home directory
  • Loading branch information
prjemian authored Feb 26, 2024
1 parent bc8e767 commit 7d4f553
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ Maintenance

* Drop the (unused now) *stdlogpj* package for configuring Python's *logging*.
* Environment for bluesky_2024_1.
* Updates (from learned 2-ID) for new installations.


v1.0.1
Expand Down
2 changes: 1 addition & 1 deletion bluesky/instrument/framework/initialize.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
def get_md_path():
path = iconfig.get("RUNENGINE_MD_PATH")
if path is None:
path = pathlib.Path.home() / "Bluesky_RunEngine_md"
path = pathlib.Path.home() / ".config" / "Bluesky_RunEngine_md"
else:
path = pathlib.Path(path)
logger.info("RunEngine metadata saved in directory: %s", str(path))
Expand Down
2 changes: 1 addition & 1 deletion bluesky/instrument/iconfig.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ WRITE_SPEC_DATA_FILES: true

# Directory to "autosave" the RE.md dictionary (uses PersistentDict)
# Uncomment and modify to change from the default.
# RUNENGINE_MD_PATH: /home/USERNAME/Bluesky_RunEngine_md
# RUNENGINE_MD_PATH: /home/USERNAME/.config/Bluesky_RunEngine_md

# override default control layer for ophyd
# if undefined, defaults to PyEpics
Expand Down

0 comments on commit 7d4f553

Please sign in to comment.