Reputation: 8477
I wanted to port my django app
to run on GoogleAppEngine
and deploy this on appspot.com
.In my django app I am using postgres
as db to store user info,sothat user login /registration is possible.
I came across this article about porting django to appengine
.
It mentions that you need to use Google Cloud SQL backend
.This article says that it comes with a price from june12th
onwards.
So,it seems that, to I have to pay to deploy even a non commercial application? Or is there some way I can do this without using cloud sql?
Upvotes: 0
Views: 157
Reputation: 4908
I did it with django-nonrel, it requires a few modifications but it worked. Here is a guide on how to set up. After it worked for me, I realized Heroku was easier to set-up and maintain, so my other apps went straight to heroku.
Upvotes: 1