You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Django users
Hi everybody
Does anyone use Google App Engine to run a "real" Django application? I want to give Google App Engine a try. I don't want to use Google Container Engine or Google App Engine Managed VM for now. I consider them as another option if using plain Google App Engine does not work out.
My goals are:
Separated Environments Development, Stage and Production (where stage and production can be just different app engine projects and so can be considered as "the same").
Using Task Queue (instead of Celery) Used for async tasks and scheduled ones (cronjob).
Using Memcache (instead of Redis) For caching keys up to caching templates etc.
Using Cloud Storage (Buckets) as Storage backend For media files.
Using CloudSQL (instead of Postgres) I don't care about nonrel for the moment. Using Datastore should be a future goal here.
My subject is all about how to setup and separate environments (1). But if someone has feedback or input about another goal, why e.g. not to use it, I'm very happy to hear! Btw. my test project is much alike https://github.com/GoogleCloudPlatform/appengine-django-skeleton for now.
to have python libraries that use C extensions loaded locally (like mysql) and that
google.appengine
is available. But how can I run django management commands locally? Whats best practice here?
And the biggest one: Whats best practice to migrate production database? I heard stuff about interacting with the database through a separate GCE instance running scripts. Or is there no best practice because with Datastore "you don't need" migrations ;)
I would be very happy about some tipps pointing me to the right direction. Thank you!
Silvan
Tim Graham
unread,
Mar 7, 2016, 11:32:30 AM3/7/16
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Django users
yes thx, I did take a look at it. the sandbox stuff looks interesting for my current problem, but the hole project seems a little bloated, no offence! maybe I'll be able to contribute, after I unterstand, whats should go on here.