We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 960283e + b6fc598 commit a417af4Copy full SHA for a417af4
README.md
@@ -18,15 +18,24 @@ Install the module into your TOM environment:
18
pip install tom-swift
19
```
20
21
-Add `tom_swift.swift.SwiftFacility` to the `TOM_FACILITY_CLASSES` in your TOM's
+1. In your project `settings.py`, add `tom_swift` to your `INSTALLED_APPS` setting:
22
+
23
+ ```python
24
+ INSTALLED_APPS = [
25
+ ...
26
+ 'tom_swift',
27
+ ]
28
+ ```
29
30
+2. Add `tom_swift.swift.SwiftFacility` to the `TOM_FACILITY_CLASSES` in your TOM's
31
`settings.py`:
-```python
32
33
TOM_FACILITY_CLASSES = [
- 'tom_observations.facilities.lco.LCOFacility',
34
+ 'tom_observations.facilities.lco.LCOFacility',
35
...
36
'tom_swift.swift.SwiftFacility',
37
]
-```
38
39
40
## Configuration
41
0 commit comments