README: Add section about starting celery tasks manually

pull/39/head
Fabian P. Schmidt 2016-02-04 23:05:32 +01:00
rodzic a71d5862f7
commit 2b4985330d
1 zmienionych plików z 13 dodań i 10 usunięć

Wyświetl plik

@ -147,17 +147,20 @@ Only the command `logbook.compute` requires a running task server (celery) at th
### Available tasks
- ogn.collect.database
- `import_ddb` - Import registered devices from the ddb
- `import_file` - Import registered devices from a local file
- ogn.collect.receiver
- `update_receivers` - Populate/update receiver table
- ogn.collect.logbook
- `compute_takeoff_and_landing` - Generate TakeoffLanding table
- ogn.collect.heatmap
- `update_beacon_receiver_distance_all` - Calculate the distance between aircraft and
receiver for the last aircraft beacons
- `ogn.collect.database.import_ddb` - Import registered devices from the ddb
- `ogn.collect.database.import_file` - Import registered devices from a local file
- `ogn.collect.heatmap.update_beacon_receiver_distance_all` - Calculate the distance between aircraft and receiver for the last aircraft beacons
- `ogn.collect.receiver.update_receivers` - Populate/update receiver table
- `ogn.collect.logbook.compute_takeoff_and_landing` - Generate TakeoffLanding table
If the task server is up and running, tasks could be started manually.
```
python3
>>>from ogn.collect.database import import_ddb
>>>import_ddb.delay()
```
## License
Licensed under the [AGPLv3](LICENSE).