https://github.com/karantan/pyramid_celery_sqla
Testing sandbox for pyramid + celery + sqlalchemy
https://github.com/karantan/pyramid_celery_sqla
Last synced: 2 months ago
JSON representation
Testing sandbox for pyramid + celery + sqlalchemy
- Host: GitHub
- URL: https://github.com/karantan/pyramid_celery_sqla
- Owner: karantan
- License: bsd-3-clause
- Created: 2022-11-21T15:24:28.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2022-11-22T07:58:59.000Z (over 2 years ago)
- Last Synced: 2025-02-13T15:53:51.704Z (4 months ago)
- Language: Python
- Size: 14.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# pyramid_celery_sqla
Testing sandbox for pyramid + celery + sqlalchemy## Getting Started
Make sure you have a local redis-server running and then do:
```
$ pip install -e .
$ celery worker -A pyramid_celery.celery_app --ini development.ini -B
```You can also run the worker and the beat scheduler separately:
```
$ celery worker -A pyramid_celery.celery_app --ini development.ini
$ celery beat -A pyramid_celery.celery_app --ini development.ini
``````
$ gunicorn --paste development.ini --bind localhost:8080 --reload --timeout 3600
```