Skip to content

Commit a417af4

Browse files
authored
Merge pull request #6 from TOMToolkit/jchate6-patch-1
Update README.md
2 parents 960283e + b6fc598 commit a417af4

File tree

1 file changed

+13
-4
lines changed

1 file changed

+13
-4
lines changed

README.md

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,24 @@ Install the module into your TOM environment:
1818
pip install tom-swift
1919
```
2020

21-
Add `tom_swift.swift.SwiftFacility` to the `TOM_FACILITY_CLASSES` in your TOM's
21+
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
2231
`settings.py`:
23-
```python
32+
```python
2433
TOM_FACILITY_CLASSES = [
25-
'tom_observations.facilities.lco.LCOFacility',
34+
'tom_observations.facilities.lco.LCOFacility',
2635
...
2736
'tom_swift.swift.SwiftFacility',
2837
]
29-
```
38+
```
3039

3140
## Configuration
3241

0 commit comments

Comments
 (0)