Skip to content

Latest commit

 

History

History
24 lines (14 loc) · 853 Bytes

README.md

File metadata and controls

24 lines (14 loc) · 853 Bytes

acme

Application to facilitate product ingestion

Installation

To install the project, first of all, create a virtualenv https://packaging.python.org/guides/installing-using-pip-and-virtualenv/ and then pip install requirements.txt

Then run migrations python manage.py migrate while at the base folder for the project

Then run the server python manage.py runserver 8000

Contributing

To contribute pick up one of the issues and then make a pull request.

Raising Issues

If one finds an issue that needs to be fixed, they can raise an issue on https://github.com/lincmba/acme/issues

Running Celery Worker

This project uses http://docs.celeryproject.org/en/latest/ to run asynchronous tasks such as processing csv product upload. To run the celery worker:

$ cd root folder of the project

$ celery worker --app acme --loglevel=INFO