Skip to content

Commit

Permalink
fix install instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
luto committed Dec 17, 2023
1 parent 76a545d commit d7dabbc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ then, add the app to `settings.py`:
INSTALLED_APPS = [
# ... other apps ...
"aetos",
"django_aetos",
# ... other apps ...
]
Expand Down Expand Up @@ -52,8 +52,8 @@ Your `src/app/signals.py`:
@receiver(collect_metrics, dispatch_uid='metric_universes_count')
def metric_universes_count(sender, **kwargs):
yield {
"name": f"universes_count",
"help": f"Total number of universes",
"name": "universes_count",
"help": "Total number of universes",
"type": "counter",
"value": 1,
}
Expand Down

0 comments on commit d7dabbc

Please sign in to comment.