Closed ppiccolo closed 7 years ago
@ppiccolo
I'm not sure celery
project with pyconcrete
I think it should be worked for django + uwsgi
uwsgi entry point should be wsgi.py
of django project, need take care below
wsgi.py
import pyconcrete
import os
from django.core.wsgi import get_wsgi_application
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "your_project.settings")
application = get_wsgi_application()
I think I will add an example for django project in pyconcrete source in future
Ok I'll give it a try.
Thank you
Already add an example for Django, close this issue.
How to run migration using pyconcrete in Django
leave manager.py
& wsgi.py
as plaintext file (non encrypted)
follow the README, pyconcrete should be importted in the entry file
and you can just execute as below
$ ./manage.py migrate
it's working.
Thanks you
Hello,
I like to know if is possible to encrypt also a Django/Celery project ?
Thanks