surfer190
surfer190
Take a look at the examples on [running django management commands](https://docs.djangoproject.com/en/2.1/ref/django-admin/#running-management-commands-from-your-code) Specifically, try and call the `Command()` function instead of passing string args. eg. `management.call_command(loaddata.Command(), 'test_data', verbosity=0)`
Thanks @MrNaif2018 for reviewing that [bitcart cc post](https://fixes.co.za/bitcoin/self-hosted-bitcoin-payments/#bitcart-cc). The reason I was looking at using bitcart cc and manual deployment was that I could read the code and have an...
Thanks for responding @mbyczkowski Yes, I agree that a seperate docker file would make it easier for people new to the project to get up and running.
Yes, did a `docker-compose restart` and that sorted it. Is there anything we can do to ensure the rule is removed from elastalert from the praeco side?
> We could do something like restart elastalert everytime a rule is deleted, but that feels too hacky. Yes, agreed. Yeah we'll need to do a bit more digging.
John, I like the rename method.
Yes will really boost the ease of use of the package, that will draw in more contributors. Perhaps someone should help @tianhao64 to put it on pypi
Ok. The generated code can be added then (not the generator). I feel like the first step mentioned about the `setup.py` can be implemented...I will try it out and maybe...
Adding to settings: ``` SECRET_KEY = 'some-random-key' ``` fixes it but is it necessary?
This might not be your problem though, I think the requirements file in `elastalert` may not be locked down to a specific version. Eg `pip install elasticsearch==6.3.1` Yes, not your...