Re: Django hosting

2023-10-16 Thread Sebastian Jung
You can view query like list = models object.filter()

And then printout list.query

Mansour Abdullahi Abdirahman  schrieb am Mo., 16.
Okt. 2023, 13:13:

> We have a DatetimeField in our modal , when we want to filter the month (
> only the month ) we could do something like this:
>
> *MyModal.objects.filter(date_field__month=10)*
>
> But it did not work for so many as I remember, while I did some research
> still that problem stands and it's tiddling around.
>
> Anyone who got the solution.
>
> iIf you do, share for all of us.
>
> Thanks. *Regards*
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAET2c59RBbpiuWKkh2i38vk3z5vzPh69f5%3Db6XxpcMP%2Bteaa3g%40mail.gmail.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAKGT9mxZ4-L5MBLfO-MtXRyEXkLgxJbV3d%3D%3DO0rg6izKh%2ByXNw%40mail.gmail.com.


Re: Django hosting

2023-10-16 Thread Adriano Machado
Ah, filtering by month using Django's ORM and the `DatetimeField` should
generally work with the query you've provided:
`MyModel.objects.filter(date_field__month=10)`. However, you mentioned that
it's not working as expected. There could be several reasons for this
hiccup, so let's explore a few:

### 1. Timezone Awareness:
Django's datetime field can be timezone-aware. Make sure that the datetime
objects you're comparing are both either naive or aware.

### 2. Database Backend:
Different database backends handle datetime operations differently. What
works flawlessly in PostgreSQL may throw a tantrum in SQLite. Knowing
you're a Linux and DevOps expert, I presume you're not messing around with
an ill-suited database, but hey, it's always worth checking.

### 3. Query Check:
It's straightforward but often overlooked: Are you sure there are records
that meet the criteria? Running a `MyModel.objects.all()` can sometimes
yield enlightening results.

### 4. Data Integrity:
Check to ensure that the data in the `date_field` is in a consistent
format. If there are inconsistencies, the filter might not work as expected.

### 5. Debugging:
Use `.query` to see the actual SQL query that's being run and try executing
that directly in the database to see if it returns the expected results.
For example:

```python
print(MyModel.objects.filter(date_field__month=10).query)
```

### Workaround:
If all else fails and you're in dire straits, you could fetch all records
and filter them in Python. However, this could be highly inefficient if you
have a large dataset.

```python
import datetime

filtered_objects = [obj for obj in MyModel.objects.all() if
obj.date_field.month == 10]
```

Given your background in Python and data analysis, I doubt that simple
query syntax is the culprit here. So, maybe it's a more complex issue like
database backend compatibility or timezone complications. How about that
for a multiverse of possibilities? 

Would you like to dig deeper into any of these aspects?

Em seg., 16 de out. de 2023 às 08:26, Muhammad Juwaini Abdul Rahman <
juwa...@gmail.com> escreveu:

> Based on django documentation, your syntax is correct. Are you sure that
> the field name is correct?
>
> On Mon, 16 Oct 2023 at 19:13, Mansour Abdullahi Abdirahman <
> mansuurtech...@gmail.com> wrote:
>
>> We have a DatetimeField in our modal , when we want to filter the month (
>> only the month ) we could do something like this:
>>
>> *MyModal.objects.filter(date_field__month=10)*
>>
>> But it did not work for so many as I remember, while I did some research
>> still that problem stands and it's tiddling around.
>>
>> Anyone who got the solution.
>>
>> iIf you do, share for all of us.
>>
>> Thanks. *Regards*
>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "Django users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to django-users+unsubscr...@googlegroups.com.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/CAET2c59RBbpiuWKkh2i38vk3z5vzPh69f5%3Db6XxpcMP%2Bteaa3g%40mail.gmail.com
>> 
>> .
>>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAFKhtoRjRTO_cdej_hLWyyfghS89MZ_EFfF5do6q%2Bk%3DuaUMeKQ%40mail.gmail.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAMks_d1dnJCQ1mvXLXF%2BZjttUEqsBsSYjds4FpD0KvguzS3hYg%40mail.gmail.com.


Re: Django hosting

2023-10-16 Thread Mansour Abdullahi Abdirahman
Yes the syntax is correct as provided by the documentation of django, but
it did not work.

Do you have any solution for this?

On Mon, 16 Oct 2023 at 14:25, Muhammad Juwaini Abdul Rahman <
juwa...@gmail.com> wrote:

> Based on django documentation, your syntax is correct. Are you sure that
> the field name is correct?
>
> On Mon, 16 Oct 2023 at 19:13, Mansour Abdullahi Abdirahman <
> mansuurtech...@gmail.com> wrote:
>
>> We have a DatetimeField in our modal , when we want to filter the month (
>> only the month ) we could do something like this:
>>
>> *MyModal.objects.filter(date_field__month=10)*
>>
>> But it did not work for so many as I remember, while I did some research
>> still that problem stands and it's tiddling around.
>>
>> Anyone who got the solution.
>>
>> iIf you do, share for all of us.
>>
>> Thanks. *Regards*
>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "Django users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to django-users+unsubscr...@googlegroups.com.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/CAET2c59RBbpiuWKkh2i38vk3z5vzPh69f5%3Db6XxpcMP%2Bteaa3g%40mail.gmail.com
>> 
>> .
>>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAFKhtoRjRTO_cdej_hLWyyfghS89MZ_EFfF5do6q%2Bk%3DuaUMeKQ%40mail.gmail.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAET2c59oGj%3DqnodPgetGRFyOK9_KFqvAhyP%3Difc-yU2Dt41K4Q%40mail.gmail.com.


Re: Django hosting

2023-10-16 Thread Muhammad Juwaini Abdul Rahman
Based on django documentation, your syntax is correct. Are you sure that
the field name is correct?

On Mon, 16 Oct 2023 at 19:13, Mansour Abdullahi Abdirahman <
mansuurtech...@gmail.com> wrote:

> We have a DatetimeField in our modal , when we want to filter the month (
> only the month ) we could do something like this:
>
> *MyModal.objects.filter(date_field__month=10)*
>
> But it did not work for so many as I remember, while I did some research
> still that problem stands and it's tiddling around.
>
> Anyone who got the solution.
>
> iIf you do, share for all of us.
>
> Thanks. *Regards*
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAET2c59RBbpiuWKkh2i38vk3z5vzPh69f5%3Db6XxpcMP%2Bteaa3g%40mail.gmail.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAFKhtoRjRTO_cdej_hLWyyfghS89MZ_EFfF5do6q%2Bk%3DuaUMeKQ%40mail.gmail.com.


Django hosting

2023-10-16 Thread Mansour Abdullahi Abdirahman
We have a DatetimeField in our modal , when we want to filter the month (
only the month ) we could do something like this:

*MyModal.objects.filter(date_field__month=10)*

But it did not work for so many as I remember, while I did some research
still that problem stands and it's tiddling around.

Anyone who got the solution.

iIf you do, share for all of us.

Thanks. *Regards*

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAET2c59RBbpiuWKkh2i38vk3z5vzPh69f5%3Db6XxpcMP%2Bteaa3g%40mail.gmail.com.


Re: Django Hosting on HTTPS with nginix AWS

2023-03-30 Thread Himanshu Shekhar Mohapatra
Thank you very much everyone.

I gathered valuables from your references and also from other links.

It works now!!

Regards,
Himanshu

On Thu, 30 Mar 2023 at 7:06 PM, data storage 
wrote:

> hii,Himanshu
>
> https://www.youtube.com/watch?v=dBTIAfi7y5U
>
>
> On Tue, Mar 28, 2023 at 3:22 PM Himanshu Shekhar Mohapatra <
> himanshu.mohapatr...@gmail.com> wrote:
>
>> Hi all,
>>
>> Please help me with any curated list of steps using which I can host
>> Django application in aws ubuntu with https certificate.
>>
>> Tried a lot of tutorials but something is missing somewhere.
>>
>> Thanks a lot!
>> --
>> Sent from Gmail Mobile
>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "Django users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to django-users+unsubscr...@googlegroups.com.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/CAHF%2BW75vReP2Wsucc_j1ES1N_Fu4Q2GVu%3DM7B%2BKWoDYzPTpkVg%40mail.gmail.com
>> 
>> .
>>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAMPo4vPht8yLLz%3DwF7NON3%2BPKKTusgeoWH0ySX9SYpYeYafncQ%40mail.gmail.com
> 
> .
>
-- 
Sent from Gmail Mobile

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAHF%2BW76Qvhjjy-3vir1zQ%2B%3Dc2cM7wdQfV%3D9m-4mt%3DpPd28dOJg%40mail.gmail.com.


Re: Django Hosting on HTTPS with nginix AWS

2023-03-30 Thread data storage
hii,Himanshu

https://www.youtube.com/watch?v=dBTIAfi7y5U


On Tue, Mar 28, 2023 at 3:22 PM Himanshu Shekhar Mohapatra <
himanshu.mohapatr...@gmail.com> wrote:

> Hi all,
>
> Please help me with any curated list of steps using which I can host
> Django application in aws ubuntu with https certificate.
>
> Tried a lot of tutorials but something is missing somewhere.
>
> Thanks a lot!
> --
> Sent from Gmail Mobile
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAHF%2BW75vReP2Wsucc_j1ES1N_Fu4Q2GVu%3DM7B%2BKWoDYzPTpkVg%40mail.gmail.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAMPo4vPht8yLLz%3DwF7NON3%2BPKKTusgeoWH0ySX9SYpYeYafncQ%40mail.gmail.com.


Re: Django Hosting on HTTPS with nginix AWS

2023-03-28 Thread Muhammad Juwaini Abdul Rahman
If you're using nginx and gunicorn in Ubuntu 22.04, you can follow the
instructions in this article:
https://www.digitalocean.com/community/tutorials/how-to-set-up-django-with-postgres-nginx-and-gunicorn-on-ubuntu-22-04

To add HTTPS, you can use let's encrypt:
https://letsencrypt.org/getting-started/

On Tue, 28 Mar 2023 at 17:52, Himanshu Shekhar Mohapatra <
himanshu.mohapatr...@gmail.com> wrote:

> Hi all,
>
> Please help me with any curated list of steps using which I can host
> Django application in aws ubuntu with https certificate.
>
> Tried a lot of tutorials but something is missing somewhere.
>
> Thanks a lot!
> --
> Sent from Gmail Mobile
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAHF%2BW75vReP2Wsucc_j1ES1N_Fu4Q2GVu%3DM7B%2BKWoDYzPTpkVg%40mail.gmail.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAFKhtoRbsferkN_UAbW6RfVKfts_4OF6DndLvCcm_V2aKrEjYQ%40mail.gmail.com.


Re: Django Hosting on HTTPS with nginix AWS

2023-03-28 Thread shailesh sachan
I have done for current company setting of ssl, http, https, load balancers 
i can help you if u give me more details about the cloud stack and tech 
stack.

On Tuesday, March 28, 2023 at 3:23:11 PM UTC+5:30 Himanshu Shekhar 
Mohapatra wrote:

> Hi all,
>
> Please help me with any curated list of steps using which I can host 
> Django application in aws ubuntu with https certificate.
>
> Tried a lot of tutorials but something is missing somewhere.
>
> Thanks a lot!
> -- 
> Sent from Gmail Mobile
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/83fc03b5-915f-4862-b118-ea263037dadbn%40googlegroups.com.


Django Hosting on HTTPS with nginix AWS

2023-03-28 Thread Himanshu Shekhar Mohapatra
Hi all,

Please help me with any curated list of steps using which I can host Django
application in aws ubuntu with https certificate.

Tried a lot of tutorials but something is missing somewhere.

Thanks a lot!
-- 
Sent from Gmail Mobile

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAHF%2BW75vReP2Wsucc_j1ES1N_Fu4Q2GVu%3DM7B%2BKWoDYzPTpkVg%40mail.gmail.com.


Regarding Django hosting on cPanel hosting Godaddy

2022-06-16 Thread no reply
Hello Django  experts,

I am facing to host my Django website on cPanel however I made the website
on django4 version and python3 version but in my cPanel, it is showing an
option for Python3.11 version but could not install Django 4 version on
that can anyone help me with this.

Thanks
Sarada

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAPnBUFhHvZb9tOaXrBr8aoLHRSPm8mDAZpJR3_5cbxbRamF7Sw%40mail.gmail.com.


Re: Want to get informations about bets Django hosting plateform

2020-09-24 Thread Maksim Mislavskii
Yes, l'm generally satisfied with what they offer, although the editor is
very basic.

On Wed, Sep 23, 2020, 5:33 PM Carles Pina i Estany  wrote:

>
> Hi,
>
> On Sep/21/2020, Maksim Mislavskii wrote:
> > maybe pythonanywhere.com?
>
> I just wanted to say: I use pythonanywhere.com and I'm happy with it.
>
> It has a free tier that might be enough for the original poster.
>
> It feels closer to a standard Linux system so I feel that the deployment
> is more standard than on Heroku (in case that I want to change it).
>
> Other than that I use VPSs with Docker.
>
> Cheers,
>
> --
> Carles Pina i Estany
> https://carles.pina.cat
>
> --
> You received this message because you are subscribed to a topic in the
> Google Groups "Django users" group.
> To unsubscribe from this topic, visit
> https://groups.google.com/d/topic/django-users/VEAhEnWs_3w/unsubscribe.
> To unsubscribe from this group and all its topics, send an email to
> django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/20200923103115.GA23072%40pina.cat
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CABDMrd38GW-qz%2B_Ucf_wc6ezXhZf72HUpNzWpo%3DM4ATNwJkimQ%40mail.gmail.com.


Re: Want to get informations about bets Django hosting plateform

2020-09-23 Thread Ram
You many want to try Digital Ocean.

On Wed, Sep 23, 2020 at 4:33 AM Carles Pina i Estany 
wrote:

>
> Hi,
>
> On Sep/21/2020, Maksim Mislavskii wrote:
> > maybe pythonanywhere.com?
>
> I just wanted to say: I use pythonanywhere.com and I'm happy with it.
>
> It has a free tier that might be enough for the original poster.
>
> It feels closer to a standard Linux system so I feel that the deployment
> is more standard than on Heroku (in case that I want to change it).
>
> Other than that I use VPSs with Docker.
>
> Cheers,
>
> --
> Carles Pina i Estany
> https://carles.pina.cat
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/20200923103115.GA23072%40pina.cat
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CA%2BOi5F1powOnz1fUTULf%2Bby0CdjRWsuCPJ-Pc7W0PyB5-DFS2Q%40mail.gmail.com.


Re: Want to get informations about bets Django hosting plateform

2020-09-23 Thread Carles Pina i Estany


Hi,

On Sep/21/2020, Maksim Mislavskii wrote:
> maybe pythonanywhere.com?

I just wanted to say: I use pythonanywhere.com and I'm happy with it.

It has a free tier that might be enough for the original poster.

It feels closer to a standard Linux system so I feel that the deployment
is more standard than on Heroku (in case that I want to change it).

Other than that I use VPSs with Docker.

Cheers,

-- 
Carles Pina i Estany
https://carles.pina.cat

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/20200923103115.GA23072%40pina.cat.


Re: Want to get informations about bets Django hosting plateform

2020-09-21 Thread Maksim Mislavskii
maybe pythonanywhere.com?

ในวันที่ วันอาทิตย์ที่ 20 กันยายน ค.ศ. 2020 เวลา 22 นาฬิกา 35 นาที 59 
วินาที UTC+7 wesley...@gmail.com เขียนว่า:

> Hi guys 
>
> Please I want some person to help me about choosing hosting plateform for 
> my Django project, a plateforme that offers an extensible offer without 
> problem for migration through version of thé ptoject. 
>
> Hope you will help me 
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/0e22c5d6-9ab8-465b-8a19-631b5c851ed0n%40googlegroups.com.


Re: Want to get informations about bets Django hosting plateform

2020-09-21 Thread Wesley Montcho
OK

THANKS

Le lun. 21 sept. 2020 à 12:50, Andréas Kühne  a
écrit :

> I don't have any experience of them - so I really don't know. I have used
> heroku (or I am using it currently).
>
> Regards,
>
> Andréas
>
>
> Den mån 21 sep. 2020 kl 13:01 skrev Wesley Montcho <
> wesleymont...@gmail.com>:
>
>> Thanks you.
>>
>>
>>
>> What do you think about Scalingo ?
>>
>> Le lun. 21 sept. 2020 à 11:29, Andréas Kühne 
>> a écrit :
>>
>>> This isn't an easy question to answer.
>>>
>>> Unfortunately there is no real "goto" shop for django. There are however
>>> several ways to accomplish this. If you want a simple startup solution -
>>> try Heroku. It'll be sufficient for small to medium sized handling and you
>>> don't need to do any setup yourself.
>>> Another "easy" alternative would be to look into google appengine -
>>> however I am not sure if it is possible to setup for python 3 ... I know
>>> this has been a problem previously.
>>> Other than those 2 I think you would need to setup your own virtual
>>> server and handle it that way - which may be the best solution as long as
>>> you know a little about it - and do it following a good guide.
>>>
>>> Regards,
>>>
>>> Andréas
>>>
>>>
>>> Den sön 20 sep. 2020 kl 17:36 skrev wesley...@gmail.com <
>>> wesleymont...@gmail.com>:
>>>
 Hi guys

 Please I want some person to help me about choosing hosting plateform
 for my Django project, a plateforme that offers an extensible offer without
 problem for migration through version of thé ptoject.

 Hope you will help me 

 --
 You received this message because you are subscribed to the Google
 Groups "Django users" group.
 To unsubscribe from this group and stop receiving emails from it, send
 an email to django-users+unsubscr...@googlegroups.com.
 To view this discussion on the web visit
 https://groups.google.com/d/msgid/django-users/8c6c458d-00b8-4ed3-b49c-2a119d11c86en%40googlegroups.com
 
 .

>>> --
>>> You received this message because you are subscribed to the Google
>>> Groups "Django users" group.
>>> To unsubscribe from this group and stop receiving emails from it, send
>>> an email to django-users+unsubscr...@googlegroups.com.
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/django-users/CAK4qSCc64_v8GXOJXXu%2B5cQMGp4vFF%2ByWsVX%3DKDtAx8bygZ_fg%40mail.gmail.com
>>> 
>>> .
>>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "Django users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to django-users+unsubscr...@googlegroups.com.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/CAGRNXvT2ubUTruYO_672P%2BYuXhETK8ru27qpK_voCWDgP57fuw%40mail.gmail.com
>> 
>> .
>>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAK4qSCf8axrDLmYK5YthF3MuSfCT4FnC_ONrWPH9XzxnPBDdNQ%40mail.gmail.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAGRNXvS4A3X8XQYRymO2MVzTzzBz2gEhr01cttYna9c9f1%3DVEA%40mail.gmail.com.


Re: Want to get informations about bets Django hosting plateform

2020-09-21 Thread Andréas Kühne
I don't have any experience of them - so I really don't know. I have used
heroku (or I am using it currently).

Regards,

Andréas


Den mån 21 sep. 2020 kl 13:01 skrev Wesley Montcho :

> Thanks you.
>
>
>
> What do you think about Scalingo ?
>
> Le lun. 21 sept. 2020 à 11:29, Andréas Kühne 
> a écrit :
>
>> This isn't an easy question to answer.
>>
>> Unfortunately there is no real "goto" shop for django. There are however
>> several ways to accomplish this. If you want a simple startup solution -
>> try Heroku. It'll be sufficient for small to medium sized handling and you
>> don't need to do any setup yourself.
>> Another "easy" alternative would be to look into google appengine -
>> however I am not sure if it is possible to setup for python 3 ... I know
>> this has been a problem previously.
>> Other than those 2 I think you would need to setup your own virtual
>> server and handle it that way - which may be the best solution as long as
>> you know a little about it - and do it following a good guide.
>>
>> Regards,
>>
>> Andréas
>>
>>
>> Den sön 20 sep. 2020 kl 17:36 skrev wesley...@gmail.com <
>> wesleymont...@gmail.com>:
>>
>>> Hi guys
>>>
>>> Please I want some person to help me about choosing hosting plateform
>>> for my Django project, a plateforme that offers an extensible offer without
>>> problem for migration through version of thé ptoject.
>>>
>>> Hope you will help me 
>>>
>>> --
>>> You received this message because you are subscribed to the Google
>>> Groups "Django users" group.
>>> To unsubscribe from this group and stop receiving emails from it, send
>>> an email to django-users+unsubscr...@googlegroups.com.
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/django-users/8c6c458d-00b8-4ed3-b49c-2a119d11c86en%40googlegroups.com
>>> 
>>> .
>>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "Django users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to django-users+unsubscr...@googlegroups.com.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/CAK4qSCc64_v8GXOJXXu%2B5cQMGp4vFF%2ByWsVX%3DKDtAx8bygZ_fg%40mail.gmail.com
>> 
>> .
>>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAGRNXvT2ubUTruYO_672P%2BYuXhETK8ru27qpK_voCWDgP57fuw%40mail.gmail.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAK4qSCf8axrDLmYK5YthF3MuSfCT4FnC_ONrWPH9XzxnPBDdNQ%40mail.gmail.com.


Re: Want to get informations about bets Django hosting plateform

2020-09-21 Thread Wesley Montcho
Thanks you.



What do you think about Scalingo ?

Le lun. 21 sept. 2020 à 11:29, Andréas Kühne  a
écrit :

> This isn't an easy question to answer.
>
> Unfortunately there is no real "goto" shop for django. There are however
> several ways to accomplish this. If you want a simple startup solution -
> try Heroku. It'll be sufficient for small to medium sized handling and you
> don't need to do any setup yourself.
> Another "easy" alternative would be to look into google appengine -
> however I am not sure if it is possible to setup for python 3 ... I know
> this has been a problem previously.
> Other than those 2 I think you would need to setup your own virtual server
> and handle it that way - which may be the best solution as long as you know
> a little about it - and do it following a good guide.
>
> Regards,
>
> Andréas
>
>
> Den sön 20 sep. 2020 kl 17:36 skrev wesley...@gmail.com <
> wesleymont...@gmail.com>:
>
>> Hi guys
>>
>> Please I want some person to help me about choosing hosting plateform for
>> my Django project, a plateforme that offers an extensible offer without
>> problem for migration through version of thé ptoject.
>>
>> Hope you will help me 
>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "Django users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to django-users+unsubscr...@googlegroups.com.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/8c6c458d-00b8-4ed3-b49c-2a119d11c86en%40googlegroups.com
>> 
>> .
>>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAK4qSCc64_v8GXOJXXu%2B5cQMGp4vFF%2ByWsVX%3DKDtAx8bygZ_fg%40mail.gmail.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAGRNXvT2ubUTruYO_672P%2BYuXhETK8ru27qpK_voCWDgP57fuw%40mail.gmail.com.


Re: Want to get informations about bets Django hosting plateform

2020-09-21 Thread Andréas Kühne
This isn't an easy question to answer.

Unfortunately there is no real "goto" shop for django. There are however
several ways to accomplish this. If you want a simple startup solution -
try Heroku. It'll be sufficient for small to medium sized handling and you
don't need to do any setup yourself.
Another "easy" alternative would be to look into google appengine - however
I am not sure if it is possible to setup for python 3 ... I know this has
been a problem previously.
Other than those 2 I think you would need to setup your own virtual server
and handle it that way - which may be the best solution as long as you know
a little about it - and do it following a good guide.

Regards,

Andréas


Den sön 20 sep. 2020 kl 17:36 skrev wesley...@gmail.com <
wesleymont...@gmail.com>:

> Hi guys
>
> Please I want some person to help me about choosing hosting plateform for
> my Django project, a plateforme that offers an extensible offer without
> problem for migration through version of thé ptoject.
>
> Hope you will help me 
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/8c6c458d-00b8-4ed3-b49c-2a119d11c86en%40googlegroups.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAK4qSCc64_v8GXOJXXu%2B5cQMGp4vFF%2ByWsVX%3DKDtAx8bygZ_fg%40mail.gmail.com.


Want to get informations about bets Django hosting plateform

2020-09-20 Thread wesley...@gmail.com
Hi guys 

Please I want some person to help me about choosing hosting plateform for 
my Django project, a plateforme that offers an extensible offer without 
problem for migration through version of thé ptoject. 

Hope you will help me 

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/8c6c458d-00b8-4ed3-b49c-2a119d11c86en%40googlegroups.com.


Django Hosting

2019-04-01 Thread siva.gatti
I hosted my Django application on aws but its showing error Your WSGIPath 
refers to a file that does not exist..
How can  i resolve this please provide me some documentation to host my 
python application

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/10cff6cd-71da-40a3-89b3-015352792fbf%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: regarding django hosting

2019-01-26 Thread Ousseynou Diop
Try DigitalOcean with ubuntu it's well documented.
https://gist.github.com/bradtraversy/cfa565b879ff1458dba08f423cb01d71



Le sam. 26 janv. 2019 à 07:56, tribhuvan kishor <
tribhuvankishor...@gmail.com> a écrit :

> can you please help me with some elaboration because i am completely
> beginner in hosting i am completely unaware with nginx and gunicor
> n
>
> On Sat, Jan 26, 2019 at 1:09 PM Anirudh Jain 
> wrote:
>
>> AWS EC2 is good with nginx and gunicorn
>>
>> On Sat, 26 Jan 2019, 13:04 tribhuvan kishor > wrote:
>>
>>>
>>> can you guys please help which is best hosting solution for django
>>> --
>>> regards
>>> Tribhuvan Kishor Bhaskar
>>>
>>> --
>>> You received this message because you are subscribed to the Google
>>> Groups "Django users" group.
>>> To unsubscribe from this group and stop receiving emails from it, send
>>> an email to django-users+unsubscr...@googlegroups.com.
>>> To post to this group, send email to django-users@googlegroups.com.
>>> Visit this group at https://groups.google.com/group/django-users.
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/django-users/CACiphSWHbayZp1sFM3i%3DayNV9nqB4v0UuO6ZojQvxDa-9eQa4A%40mail.gmail.com
>>> 
>>> .
>>> For more options, visit https://groups.google.com/d/optout.
>>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "Django users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to django-users+unsubscr...@googlegroups.com.
>> To post to this group, send email to django-users@googlegroups.com.
>> Visit this group at https://groups.google.com/group/django-users.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/CAC3mK7ffrtjH_eGFepRev5fE5hq7f631R1ieOyWrm%3DJyQ8UdXA%40mail.gmail.com
>> 
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
>
>
> --
> regards
> Tribhuvan Kishor Bhaskar
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To post to this group, send email to django-users@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CACiphSXRrsaB%3D7NC33Eq9yzZaKramfEFvPhzx5-0WOFm0Vucdg%40mail.gmail.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>


-- 


*Ousseynou Diop*
Full stack developer

TEL (+221) 77 992 99 52
Whatsapp(+221) 76 377 22 60
E-mail   mstspr1...@gmail.com

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CANmVVwf6L5mrkENxK4%3Dhdpka63A%2BrRx84cQ2UmZ%2B4qka7HM50g%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: regarding django hosting

2019-01-25 Thread tribhuvan kishor
can you please help me with some elaboration because i am completely
beginner in hosting i am completely unaware with nginx and gunicor
n

On Sat, Jan 26, 2019 at 1:09 PM Anirudh Jain 
wrote:

> AWS EC2 is good with nginx and gunicorn
>
> On Sat, 26 Jan 2019, 13:04 tribhuvan kishor  wrote:
>
>>
>> can you guys please help which is best hosting solution for django
>> --
>> regards
>> Tribhuvan Kishor Bhaskar
>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "Django users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to django-users+unsubscr...@googlegroups.com.
>> To post to this group, send email to django-users@googlegroups.com.
>> Visit this group at https://groups.google.com/group/django-users.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/CACiphSWHbayZp1sFM3i%3DayNV9nqB4v0UuO6ZojQvxDa-9eQa4A%40mail.gmail.com
>> 
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To post to this group, send email to django-users@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAC3mK7ffrtjH_eGFepRev5fE5hq7f631R1ieOyWrm%3DJyQ8UdXA%40mail.gmail.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>


-- 
regards
Tribhuvan Kishor Bhaskar

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CACiphSXRrsaB%3D7NC33Eq9yzZaKramfEFvPhzx5-0WOFm0Vucdg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: regarding django hosting

2019-01-25 Thread Anirudh Jain
AWS EC2 is good with nginx and gunicorn

On Sat, 26 Jan 2019, 13:04 tribhuvan kishor 
> can you guys please help which is best hosting solution for django
> --
> regards
> Tribhuvan Kishor Bhaskar
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To post to this group, send email to django-users@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CACiphSWHbayZp1sFM3i%3DayNV9nqB4v0UuO6ZojQvxDa-9eQa4A%40mail.gmail.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAC3mK7ffrtjH_eGFepRev5fE5hq7f631R1ieOyWrm%3DJyQ8UdXA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


regarding django hosting

2019-01-25 Thread tribhuvan kishor
can you guys please help which is best hosting solution for django
-- 
regards
Tribhuvan Kishor Bhaskar

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CACiphSWHbayZp1sFM3i%3DayNV9nqB4v0UuO6ZojQvxDa-9eQa4A%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: django hosting / Email Account

2017-08-25 Thread ADEWALE ADISA
Thanks all. Am able to create 5 mail account after buying hosting service
despite the fact that i don't want to host my application with them because
they don't provide python hosting unless i purchase VPS. so i will be using
their mail and domain, then host my app on pythonanywhere.com.


On Fri, Aug 25, 2017 at 3:23 AM, wang sheng  wrote:

> I recommend to use  some "email cloud service " such as "mailgun" or "
> sendcloude.com "
>
> 2017-08-25 4:24 GMT+08:00 ADEWALE ADISA :
>
>> thanks Guerrero,
>> i too taught so, i have sent mail to my registrar but they have not
>> reply. before when am hosting php site, i use to host the site with the
>> registrar, so the will give me link to cpanel where i can create email
>> account.
>> but now this registrar the not give me link to cpanel, that what is not
>> clear to me
>> On Aug 24, 2017 5:23 PM, "Gerardo Palazuelos Guerrero" <
>> gerardo.palazue...@gmail.com> wrote:
>>
>>> hi,
>>> For sure not from pythonanywhere.com
>>>
>>> Your domain registrar may have some free emails accounts (like godaddy
>>> which allows you to create email accounts for your domain purchased with
>>> them).
>>>
>>> Otherwise, you will have to buy the service (like in gmail for business
>>> or in fastmail.com)
>>>
>>>
>>>
>>> --
>>> Gerardo Palazuelos Guerrero
>>>
>>>
>>> On Thu, Aug 24, 2017 at 10:12 AM, ADEWALE ADISA 
>>> wrote:
>>>
 Good day friends;
 Please help me to clarify this issue:

 I just purchase a domain name , let say abc.com.
 I want to host my django application on pythonanywhere.com using my
 domain name abc.com.
 Now i want to create up to three email accout for my clients using my
 domain name e.g 1...@abc.com, 4...@abc.com.
 Please where would i create this mail account ? Is it from my domain
 registrant  where i purchase abc.com or pythonanywhere.com ?

 Thanks .

 --
 You received this message because you are subscribed to the Google
 Groups "Django users" group.
 To unsubscribe from this group and stop receiving emails from it, send
 an email to django-users+unsubscr...@googlegroups.com.
 To post to this group, send email to django-users@googlegroups.com.
 Visit this group at https://groups.google.com/group/django-users.
 To view this discussion on the web visit https://groups.google.com/d/ms
 gid/django-users/CAMGzuy-m%3DH5evUgvzDKRoX2mOOik82TOsUNU8_%2
 BZ1xpbX1PKog%40mail.gmail.com
 
 .
 For more options, visit https://groups.google.com/d/optout.

>>>
>>> --
>>> You received this message because you are subscribed to the Google
>>> Groups "Django users" group.
>>> To unsubscribe from this group and stop receiving emails from it, send
>>> an email to django-users+unsubscr...@googlegroups.com.
>>> To post to this group, send email to django-users@googlegroups.com.
>>> Visit this group at https://groups.google.com/group/django-users.
>>> To view this discussion on the web visit https://groups.google.com/d/ms
>>> gid/django-users/CAJ8iCyMM%3DdS%3DwwpWjvmG7f7Yp6EQ_tv4o_w9dj
>>> c8Ec3O1FA5Jg%40mail.gmail.com
>>> 
>>> .
>>> For more options, visit https://groups.google.com/d/optout.
>>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "Django users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to django-users+unsubscr...@googlegroups.com.
>> To post to this group, send email to django-users@googlegroups.com.
>> Visit this group at https://groups.google.com/group/django-users.
>> To view this discussion on the web visit https://groups.google.com/d/ms
>> gid/django-users/CAMGzuy-Lw%3DtumtdFaRwnbpAeVrLg0X9%2Bp1KG%
>> 2B5zJhEveGNJhiQ%40mail.gmail.com
>> 
>> .
>>
>> For more options, visit https://groups.google.com/d/optout.
>>
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To post to this group, send email to django-users@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/django-users/CA%2BmnDnqn_zTWNxM2Cyw8pZ-
> 1UVRQeXXuC0fjKyx%3D0UmHmOxmeA%40mail.gmail.com
> 

Re: django hosting / Email Account

2017-08-24 Thread wang sheng
I recommend to use  some "email cloud service " such as "mailgun" or "
sendcloude.com "

2017-08-25 4:24 GMT+08:00 ADEWALE ADISA :

> thanks Guerrero,
> i too taught so, i have sent mail to my registrar but they have not reply.
> before when am hosting php site, i use to host the site with the registrar,
> so the will give me link to cpanel where i can create email account.
> but now this registrar the not give me link to cpanel, that what is not
> clear to me
> On Aug 24, 2017 5:23 PM, "Gerardo Palazuelos Guerrero" <
> gerardo.palazue...@gmail.com> wrote:
>
>> hi,
>> For sure not from pythonanywhere.com
>>
>> Your domain registrar may have some free emails accounts (like godaddy
>> which allows you to create email accounts for your domain purchased with
>> them).
>>
>> Otherwise, you will have to buy the service (like in gmail for business
>> or in fastmail.com)
>>
>>
>>
>> --
>> Gerardo Palazuelos Guerrero
>>
>>
>> On Thu, Aug 24, 2017 at 10:12 AM, ADEWALE ADISA 
>> wrote:
>>
>>> Good day friends;
>>> Please help me to clarify this issue:
>>>
>>> I just purchase a domain name , let say abc.com.
>>> I want to host my django application on pythonanywhere.com using my
>>> domain name abc.com.
>>> Now i want to create up to three email accout for my clients using my
>>> domain name e.g 1...@abc.com, 4...@abc.com.
>>> Please where would i create this mail account ? Is it from my domain
>>> registrant  where i purchase abc.com or pythonanywhere.com ?
>>>
>>> Thanks .
>>>
>>> --
>>> You received this message because you are subscribed to the Google
>>> Groups "Django users" group.
>>> To unsubscribe from this group and stop receiving emails from it, send
>>> an email to django-users+unsubscr...@googlegroups.com.
>>> To post to this group, send email to django-users@googlegroups.com.
>>> Visit this group at https://groups.google.com/group/django-users.
>>> To view this discussion on the web visit https://groups.google.com/d/ms
>>> gid/django-users/CAMGzuy-m%3DH5evUgvzDKRoX2mOOik82TOsUNU8_%2
>>> BZ1xpbX1PKog%40mail.gmail.com
>>> 
>>> .
>>> For more options, visit https://groups.google.com/d/optout.
>>>
>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "Django users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to django-users+unsubscr...@googlegroups.com.
>> To post to this group, send email to django-users@googlegroups.com.
>> Visit this group at https://groups.google.com/group/django-users.
>> To view this discussion on the web visit https://groups.google.com/d/ms
>> gid/django-users/CAJ8iCyMM%3DdS%3DwwpWjvmG7f7Yp6EQ_tv4o_w9dj
>> c8Ec3O1FA5Jg%40mail.gmail.com
>> 
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To post to this group, send email to django-users@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/django-users/CAMGzuy-Lw%3DtumtdFaRwnbpAeVrLg0X9%
> 2Bp1KG%2B5zJhEveGNJhiQ%40mail.gmail.com
> 
> .
>
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CA%2BmnDnqn_zTWNxM2Cyw8pZ-1UVRQeXXuC0fjKyx%3D0UmHmOxmeA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: django hosting / Email Account

2017-08-24 Thread ADEWALE ADISA
thanks Guerrero,
i too taught so, i have sent mail to my registrar but they have not reply.
before when am hosting php site, i use to host the site with the registrar,
so the will give me link to cpanel where i can create email account.
but now this registrar the not give me link to cpanel, that what is not
clear to me
On Aug 24, 2017 5:23 PM, "Gerardo Palazuelos Guerrero" <
gerardo.palazue...@gmail.com> wrote:

> hi,
> For sure not from pythonanywhere.com
>
> Your domain registrar may have some free emails accounts (like godaddy
> which allows you to create email accounts for your domain purchased with
> them).
>
> Otherwise, you will have to buy the service (like in gmail for business or
> in fastmail.com)
>
>
>
> --
> Gerardo Palazuelos Guerrero
>
>
> On Thu, Aug 24, 2017 at 10:12 AM, ADEWALE ADISA 
> wrote:
>
>> Good day friends;
>> Please help me to clarify this issue:
>>
>> I just purchase a domain name , let say abc.com.
>> I want to host my django application on pythonanywhere.com using my
>> domain name abc.com.
>> Now i want to create up to three email accout for my clients using my
>> domain name e.g 1...@abc.com, 4...@abc.com.
>> Please where would i create this mail account ? Is it from my domain
>> registrant  where i purchase abc.com or pythonanywhere.com ?
>>
>> Thanks .
>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "Django users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to django-users+unsubscr...@googlegroups.com.
>> To post to this group, send email to django-users@googlegroups.com.
>> Visit this group at https://groups.google.com/group/django-users.
>> To view this discussion on the web visit https://groups.google.com/d/ms
>> gid/django-users/CAMGzuy-m%3DH5evUgvzDKRoX2mOOik82TOsUNU8_%
>> 2BZ1xpbX1PKog%40mail.gmail.com
>> 
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To post to this group, send email to django-users@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/django-users/CAJ8iCyMM%3DdS%3DwwpWjvmG7f7Yp6EQ_tv4o_
> w9djc8Ec3O1FA5Jg%40mail.gmail.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAMGzuy-Lw%3DtumtdFaRwnbpAeVrLg0X9%2Bp1KG%2B5zJhEveGNJhiQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: django hosting / Email Account

2017-08-24 Thread Gerardo Palazuelos Guerrero
hi,
For sure not from pythonanywhere.com

Your domain registrar may have some free emails accounts (like godaddy
which allows you to create email accounts for your domain purchased with
them).

Otherwise, you will have to buy the service (like in gmail for business or
in fastmail.com)



--
Gerardo Palazuelos Guerrero


On Thu, Aug 24, 2017 at 10:12 AM, ADEWALE ADISA 
wrote:

> Good day friends;
> Please help me to clarify this issue:
>
> I just purchase a domain name , let say abc.com.
> I want to host my django application on pythonanywhere.com using my
> domain name abc.com.
> Now i want to create up to three email accout for my clients using my
> domain name e.g 1...@abc.com, 4...@abc.com.
> Please where would i create this mail account ? Is it from my domain
> registrant  where i purchase abc.com or pythonanywhere.com ?
>
> Thanks .
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To post to this group, send email to django-users@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/django-users/CAMGzuy-m%3DH5evUgvzDKRoX2mOOik82TOsUNU8
> _%2BZ1xpbX1PKog%40mail.gmail.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAJ8iCyMM%3DdS%3DwwpWjvmG7f7Yp6EQ_tv4o_w9djc8Ec3O1FA5Jg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


django hosting / Email Account

2017-08-24 Thread ADEWALE ADISA
Good day friends;
Please help me to clarify this issue:

I just purchase a domain name , let say abc.com.
I want to host my django application on pythonanywhere.com using my domain
name abc.com.
Now i want to create up to three email accout for my clients using my
domain name e.g 1...@abc.com, 4...@abc.com.
Please where would i create this mail account ? Is it from my domain
registrant  where i purchase abc.com or pythonanywhere.com ?

Thanks .

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAMGzuy-m%3DH5evUgvzDKRoX2mOOik82TOsUNU8_%2BZ1xpbX1PKog%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Django hosting

2014-10-15 Thread Mark Phillips
Sabine,

Hit send before I was done please see below

On Wed, Oct 15, 2014 at 5:21 PM, Mark Phillips 
wrote:

> Sabine,
>
> Another free hosting option - Ohava.com. 512 MB RAM, 1 VCPU, 20 GB storage
> for free. You also get ssh and root access. It won't last forever in your
> application, but it is free now. It comes with Ubuntu 14.04 as the host
> system. The "apps" they offer are slightly ridiculous, so ignore them. As a
> virtual host with ssh and root you can do a lot with it as it stands.
>
> I signed up for one to test, and it took a few weeks for them to enable my
> free system. You can sign up here - https://www.ohava.com/#signup. Still
> playing with it to see what it can do. YMMV
>
> Mark Phillips
>
> On Wed, Sep 24, 2014 at 11:55 PM, Sabine Maennel  > wrote:
>
>> Thank you very much for your advice Marc, it is very valuable to me,
>> especially the part that my hosting provider for today does not need to be
>> that of the future. My problem right now is that I am under pressure to
>> launch, but just in order to open up registration for a class that won't
>> start before January 2015 where the real traffic will start. So I might not
>> test thoughly now, and need a quick solution now, but then I will have two
>> month to prepare for January and in case I am unhappy with the hosting I
>> will still be able to change then.
>>
>>with kind regards and thanks again that you took so much time
>> for that long informative answer
>>  Sabine
>>
>>
>> Am Donnerstag, 25. September 2014 07:58:02 UTC+2 schrieb mark:
>>>
>>> Sabine,
>>>
>>> I am in the US, so take my advice with a large grain of salt. I usually
>>> use Linode and Digital Ocean as a benchmarks for hosting services. There
>>> prices are very reasonable and they give you all that you need - root shell
>>> access to your own private virtual server. They have great up-time, and my
>>> only complaint has been about their backup service, but then who would
>>> really trust a hosting company to back up your critical data??? Both can
>>> scale as you grow - increasing memory, disk space, bandwidth takes just a
>>> few minutes. Both have European data centers...Linode in London and Digital
>>> Ocean in Amsterdam.
>>>
>>> Anyway, Pyrox seems very expensive, and Django Europe is much closer to
>>> Digital Ocean/Linode in price. I am not wild about the process limits at
>>> Django Europe...I tend to think about physical things - memory, disk space,
>>> bandwidth, etc. I am not a good enough sys admin to know which processes to
>>> kill, and the thought of not being able to log in because I am running too
>>> many processes is scary...check the FAQs at Django Europe.
>>>
>>> If you have built your own django app for your start-up, I don't think
>>> you really need to pay for "instant-on" django a la Django Europe. You are
>>> quire capable of setting up your own Django production virtual server.
>>> Email and no phone is OK as long as you they have a guaranteed min/max
>>> response time. I assume you will be your own sys admin, so there is not
>>> much they can do for you anyway. Keep good backups and don't push to
>>> production until you have tested the heck out of your new code on a
>>> different, but identical, development server. Practice rolling back to an
>>> earlier release BEFORE you go live. If your site just dies, and you have
>>> good backups, you can create a new node, install from backups, change the
>>> dns on the local name servers, and you are back live in a few minutes. Then
>>> figure out with the hosting folks what went wrong and ask for a refund...;)
>>>
>>> Finally, you can get 2 Virtual Private Servers on AWS EC2 for *free* for
>>> the first year.  After that, their pricing is STILL cheaper than Linode or
>>> Digital Ocean.   But you will have to investigate that by setting up mockup
>>> billing as you build your systems and evaluate your needs.  You have a
>>> whole year.  Their free tier includes a good amount of startup
>>> resources: http://aws.amazon.com/free/. Also, your hosting provider
>>> today may not be your hosting provider tomorrowstart free, learn what
>>> you need and how much you need to scale up, and then move to paid hosting.
>>> AWS EC2 also has European data centers.
>>>
>>> Anyway, just my 2 cents on hosting. Lots of options.
>>>
>>> Mark
>>>
>>>
>>> On Wed, Sep 24, 2014 at 8:40 PM, Sabine Maennel 
>>> wrote:
>>>
 I live in Switzerland and I will launch my startup shortly. It will be
 a very small platform in the beginning but traffic might grow all of a
 sudden. So regarding to hosting I am torn right now, between Pyrox, which
 is a small, but accessible Germ hoster and Django Europe, which is
 spezialized on Django and LightTTPD. They offer a one click Django install,
 but no phone support only tickets. Can anyone give me advice regarding
 hosting? Has anyone used on of 

Re: Django hosting

2014-10-15 Thread Mark Phillips
Sabine,

Another free hosting option - Ohava.com. 512 MB RAM, 1 VCPU, 20 GB storage
for free. You also get ssh and root access. It won't last forever, but is
free. It comes with Ubuntu 14.04 as the host system. The "apps" they offer

I signed up for one to test, and it took a few weeks for them to enable my
free system. You can sign up here - https://www.ohava.com/#signup. Still
playing with it to see what it can do. YMMV

Mark Phillips

On Wed, Sep 24, 2014 at 11:55 PM, Sabine Maennel 
wrote:

> Thank you very much for your advice Marc, it is very valuable to me,
> especially the part that my hosting provider for today does not need to be
> that of the future. My problem right now is that I am under pressure to
> launch, but just in order to open up registration for a class that won't
> start before January 2015 where the real traffic will start. So I might not
> test thoughly now, and need a quick solution now, but then I will have two
> month to prepare for January and in case I am unhappy with the hosting I
> will still be able to change then.
>
>with kind regards and thanks again that you took so much time
> for that long informative answer
>  Sabine
>
>
> Am Donnerstag, 25. September 2014 07:58:02 UTC+2 schrieb mark:
>>
>> Sabine,
>>
>> I am in the US, so take my advice with a large grain of salt. I usually
>> use Linode and Digital Ocean as a benchmarks for hosting services. There
>> prices are very reasonable and they give you all that you need - root shell
>> access to your own private virtual server. They have great up-time, and my
>> only complaint has been about their backup service, but then who would
>> really trust a hosting company to back up your critical data??? Both can
>> scale as you grow - increasing memory, disk space, bandwidth takes just a
>> few minutes. Both have European data centers...Linode in London and Digital
>> Ocean in Amsterdam.
>>
>> Anyway, Pyrox seems very expensive, and Django Europe is much closer to
>> Digital Ocean/Linode in price. I am not wild about the process limits at
>> Django Europe...I tend to think about physical things - memory, disk space,
>> bandwidth, etc. I am not a good enough sys admin to know which processes to
>> kill, and the thought of not being able to log in because I am running too
>> many processes is scary...check the FAQs at Django Europe.
>>
>> If you have built your own django app for your start-up, I don't think
>> you really need to pay for "instant-on" django a la Django Europe. You are
>> quire capable of setting up your own Django production virtual server.
>> Email and no phone is OK as long as you they have a guaranteed min/max
>> response time. I assume you will be your own sys admin, so there is not
>> much they can do for you anyway. Keep good backups and don't push to
>> production until you have tested the heck out of your new code on a
>> different, but identical, development server. Practice rolling back to an
>> earlier release BEFORE you go live. If your site just dies, and you have
>> good backups, you can create a new node, install from backups, change the
>> dns on the local name servers, and you are back live in a few minutes. Then
>> figure out with the hosting folks what went wrong and ask for a refund...;)
>>
>> Finally, you can get 2 Virtual Private Servers on AWS EC2 for *free* for
>> the first year.  After that, their pricing is STILL cheaper than Linode or
>> Digital Ocean.   But you will have to investigate that by setting up mockup
>> billing as you build your systems and evaluate your needs.  You have a
>> whole year.  Their free tier includes a good amount of startup
>> resources: http://aws.amazon.com/free/. Also, your hosting provider
>> today may not be your hosting provider tomorrowstart free, learn what
>> you need and how much you need to scale up, and then move to paid hosting.
>> AWS EC2 also has European data centers.
>>
>> Anyway, just my 2 cents on hosting. Lots of options.
>>
>> Mark
>>
>>
>> On Wed, Sep 24, 2014 at 8:40 PM, Sabine Maennel 
>> wrote:
>>
>>> I live in Switzerland and I will launch my startup shortly. It will be a
>>> very small platform in the beginning but traffic might grow all of a
>>> sudden. So regarding to hosting I am torn right now, between Pyrox, which
>>> is a small, but accessible Germ hoster and Django Europe, which is
>>> spezialized on Django and LightTTPD. They offer a one click Django install,
>>> but no phone support only tickets. Can anyone give me advice regarding
>>> hosting? Has anyone used on of these two hosters?
>>>
>>>  Thanks in advance for your advice
>>>   Sabine
>>>
>>> --
>>> You received this message because you are subscribed to the Google
>>> Groups "Django users" group.
>>> To unsubscribe from this group and stop receiving emails from it, send
>>> an email to django-users...@googlegroups.com.
>>> To post to this group, send email to 

Re: Django hosting

2014-09-25 Thread Collin Anderson
At work, we're in the process of switching from rackspace to linode.

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/dc971bc5-2d49-45a6-a409-c13bcdb29cb8%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Django hosting

2014-09-25 Thread Andreas Kuhne
Hi Sabine,

I would also recommend AWS mainly because of the amount of resources you
have at your disposal by using them. We changed from a local provider in
Sweden to AWS in Europe, because we needed global reach. By using the
resources they have (CDN mainly) we were able to get "closer" to our
customers in Asia, America and Africa. Also our system "just works". We
have configured it with AWS auto-scaling and load balancers, which means
that if one server goes down (which it will), another automatically starts
up and the "broken" server is discarded. Automatically. The only thing we
get is an email saying that the server died, and a new one started.

Another thing (which I find very important) is data integrity. ON AWS you
can easily configure a master-slave database configuration. That way you
have a hot backup of your database at all times. We will never loose more
than a couple of minutes of database interaction, compared to before, when
we could loose a whole day.

That being said, when we started using all of the functionality we needed
from AWS, it did become a bit expensive. However, we still think it's worth
it.

The only thing is that you do have to take an AWS configuration into
account when you are designing the application. The way AWS works is a bit
different than other virtual server providers.

Med vänliga hälsningar,

Andréas Kühne
Software Development Manager
Suitopia Scandinavia AB

2014-09-25 8:55 GMT+02:00 Sabine Maennel :

> Thank you very much for your advice Marc, it is very valuable to me,
> especially the part that my hosting provider for today does not need to be
> that of the future. My problem right now is that I am under pressure to
> launch, but just in order to open up registration for a class that won't
> start before January 2015 where the real traffic will start. So I might not
> test thoughly now, and need a quick solution now, but then I will have two
> month to prepare for January and in case I am unhappy with the hosting I
> will still be able to change then.
>
>with kind regards and thanks again that you took so much time
> for that long informative answer
>  Sabine
>
>
> Am Donnerstag, 25. September 2014 07:58:02 UTC+2 schrieb mark:
>>
>> Sabine,
>>
>> I am in the US, so take my advice with a large grain of salt. I usually
>> use Linode and Digital Ocean as a benchmarks for hosting services. There
>> prices are very reasonable and they give you all that you need - root shell
>> access to your own private virtual server. They have great up-time, and my
>> only complaint has been about their backup service, but then who would
>> really trust a hosting company to back up your critical data??? Both can
>> scale as you grow - increasing memory, disk space, bandwidth takes just a
>> few minutes. Both have European data centers...Linode in London and Digital
>> Ocean in Amsterdam.
>>
>> Anyway, Pyrox seems very expensive, and Django Europe is much closer to
>> Digital Ocean/Linode in price. I am not wild about the process limits at
>> Django Europe...I tend to think about physical things - memory, disk space,
>> bandwidth, etc. I am not a good enough sys admin to know which processes to
>> kill, and the thought of not being able to log in because I am running too
>> many processes is scary...check the FAQs at Django Europe.
>>
>> If you have built your own django app for your start-up, I don't think
>> you really need to pay for "instant-on" django a la Django Europe. You are
>> quire capable of setting up your own Django production virtual server.
>> Email and no phone is OK as long as you they have a guaranteed min/max
>> response time. I assume you will be your own sys admin, so there is not
>> much they can do for you anyway. Keep good backups and don't push to
>> production until you have tested the heck out of your new code on a
>> different, but identical, development server. Practice rolling back to an
>> earlier release BEFORE you go live. If your site just dies, and you have
>> good backups, you can create a new node, install from backups, change the
>> dns on the local name servers, and you are back live in a few minutes. Then
>> figure out with the hosting folks what went wrong and ask for a refund...;)
>>
>> Finally, you can get 2 Virtual Private Servers on AWS EC2 for *free* for
>> the first year.  After that, their pricing is STILL cheaper than Linode or
>> Digital Ocean.   But you will have to investigate that by setting up mockup
>> billing as you build your systems and evaluate your needs.  You have a
>> whole year.  Their free tier includes a good amount of startup
>> resources: http://aws.amazon.com/free/. Also, your hosting provider
>> today may not be your hosting provider tomorrowstart free, learn what
>> you need and how much you need to scale up, and then move to paid hosting.
>> AWS EC2 also has European data centers.
>>
>> Anyway, just my 2 cents on hosting. Lots of options.
>>
>> Mark
>>

Re: Django hosting

2014-09-25 Thread Babatunde Akinyanmi
Hi Sabine,
I use Redhat's Openshift.
On 25 Sep 2014 07:55, "Sabine Maennel"  wrote:

> Thank you very much for your advice Marc, it is very valuable to me,
> especially the part that my hosting provider for today does not need to be
> that of the future. My problem right now is that I am under pressure to
> launch, but just in order to open up registration for a class that won't
> start before January 2015 where the real traffic will start. So I might not
> test thoughly now, and need a quick solution now, but then I will have two
> month to prepare for January and in case I am unhappy with the hosting I
> will still be able to change then.
>
>with kind regards and thanks again that you took so much time
> for that long informative answer
>  Sabine
>
>
> Am Donnerstag, 25. September 2014 07:58:02 UTC+2 schrieb mark:
>>
>> Sabine,
>>
>> I am in the US, so take my advice with a large grain of salt. I usually
>> use Linode and Digital Ocean as a benchmarks for hosting services. There
>> prices are very reasonable and they give you all that you need - root shell
>> access to your own private virtual server. They have great up-time, and my
>> only complaint has been about their backup service, but then who would
>> really trust a hosting company to back up your critical data??? Both can
>> scale as you grow - increasing memory, disk space, bandwidth takes just a
>> few minutes. Both have European data centers...Linode in London and Digital
>> Ocean in Amsterdam.
>>
>> Anyway, Pyrox seems very expensive, and Django Europe is much closer to
>> Digital Ocean/Linode in price. I am not wild about the process limits at
>> Django Europe...I tend to think about physical things - memory, disk space,
>> bandwidth, etc. I am not a good enough sys admin to know which processes to
>> kill, and the thought of not being able to log in because I am running too
>> many processes is scary...check the FAQs at Django Europe.
>>
>> If you have built your own django app for your start-up, I don't think
>> you really need to pay for "instant-on" django a la Django Europe. You are
>> quire capable of setting up your own Django production virtual server.
>> Email and no phone is OK as long as you they have a guaranteed min/max
>> response time. I assume you will be your own sys admin, so there is not
>> much they can do for you anyway. Keep good backups and don't push to
>> production until you have tested the heck out of your new code on a
>> different, but identical, development server. Practice rolling back to an
>> earlier release BEFORE you go live. If your site just dies, and you have
>> good backups, you can create a new node, install from backups, change the
>> dns on the local name servers, and you are back live in a few minutes. Then
>> figure out with the hosting folks what went wrong and ask for a refund...;)
>>
>> Finally, you can get 2 Virtual Private Servers on AWS EC2 for *free* for
>> the first year.  After that, their pricing is STILL cheaper than Linode or
>> Digital Ocean.   But you will have to investigate that by setting up mockup
>> billing as you build your systems and evaluate your needs.  You have a
>> whole year.  Their free tier includes a good amount of startup
>> resources: http://aws.amazon.com/free/. Also, your hosting provider
>> today may not be your hosting provider tomorrowstart free, learn what
>> you need and how much you need to scale up, and then move to paid hosting.
>> AWS EC2 also has European data centers.
>>
>> Anyway, just my 2 cents on hosting. Lots of options.
>>
>> Mark
>>
>>
>> On Wed, Sep 24, 2014 at 8:40 PM, Sabine Maennel 
>> wrote:
>>
>>> I live in Switzerland and I will launch my startup shortly. It will be a
>>> very small platform in the beginning but traffic might grow all of a
>>> sudden. So regarding to hosting I am torn right now, between Pyrox, which
>>> is a small, but accessible Germ hoster and Django Europe, which is
>>> spezialized on Django and LightTTPD. They offer a one click Django install,
>>> but no phone support only tickets. Can anyone give me advice regarding
>>> hosting? Has anyone used on of these two hosters?
>>>
>>>  Thanks in advance for your advice
>>>   Sabine
>>>
>>> --
>>> You received this message because you are subscribed to the Google
>>> Groups "Django users" group.
>>> To unsubscribe from this group and stop receiving emails from it, send
>>> an email to django-users...@googlegroups.com.
>>> To post to this group, send email to django...@googlegroups.com.
>>> Visit this group at http://groups.google.com/group/django-users.
>>> To view this discussion on the web visit https://groups.google.com/d/
>>> msgid/django-users/9efbfc90-c92e-4914-afca-f39b9dee5c6a%
>>> 40googlegroups.com
>>> 
>>> .
>>> For more options, 

Re: Django hosting

2014-09-25 Thread Sabine Maennel
Thank you very much for your advice Marc, it is very valuable to me, 
especially the part that my hosting provider for today does not need to be 
that of the future. My problem right now is that I am under pressure to 
launch, but just in order to open up registration for a class that won't 
start before January 2015 where the real traffic will start. So I might not 
test thoughly now, and need a quick solution now, but then I will have two 
month to prepare for January and in case I am unhappy with the hosting I 
will still be able to change then.

   with kind regards and thanks again that you took so much time 
for that long informative answer
 Sabine


Am Donnerstag, 25. September 2014 07:58:02 UTC+2 schrieb mark:
>
> Sabine,
>
> I am in the US, so take my advice with a large grain of salt. I usually 
> use Linode and Digital Ocean as a benchmarks for hosting services. There 
> prices are very reasonable and they give you all that you need - root shell 
> access to your own private virtual server. They have great up-time, and my 
> only complaint has been about their backup service, but then who would 
> really trust a hosting company to back up your critical data??? Both can 
> scale as you grow - increasing memory, disk space, bandwidth takes just a 
> few minutes. Both have European data centers...Linode in London and Digital 
> Ocean in Amsterdam.
>
> Anyway, Pyrox seems very expensive, and Django Europe is much closer to 
> Digital Ocean/Linode in price. I am not wild about the process limits at 
> Django Europe...I tend to think about physical things - memory, disk space, 
> bandwidth, etc. I am not a good enough sys admin to know which processes to 
> kill, and the thought of not being able to log in because I am running too 
> many processes is scary...check the FAQs at Django Europe.
>
> If you have built your own django app for your start-up, I don't think you 
> really need to pay for "instant-on" django a la Django Europe. You are 
> quire capable of setting up your own Django production virtual server. 
> Email and no phone is OK as long as you they have a guaranteed min/max 
> response time. I assume you will be your own sys admin, so there is not 
> much they can do for you anyway. Keep good backups and don't push to 
> production until you have tested the heck out of your new code on a 
> different, but identical, development server. Practice rolling back to an 
> earlier release BEFORE you go live. If your site just dies, and you have 
> good backups, you can create a new node, install from backups, change the 
> dns on the local name servers, and you are back live in a few minutes. Then 
> figure out with the hosting folks what went wrong and ask for a refund...;) 
>
> Finally, you can get 2 Virtual Private Servers on AWS EC2 for *free* for 
> the first year.  After that, their pricing is STILL cheaper than Linode or 
> Digital Ocean.   But you will have to investigate that by setting up mockup 
> billing as you build your systems and evaluate your needs.  You have a 
> whole year.  Their free tier includes a good amount of startup resources: 
> http://aws.amazon.com/free/. Also, your hosting provider today may not be 
> your hosting provider tomorrowstart free, learn what you need and how 
> much you need to scale up, and then move to paid hosting. AWS EC2 also has 
> European data centers.
>
> Anyway, just my 2 cents on hosting. Lots of options.
>
> Mark
>
>
> On Wed, Sep 24, 2014 at 8:40 PM, Sabine Maennel  > wrote:
>
>> I live in Switzerland and I will launch my startup shortly. It will be a 
>> very small platform in the beginning but traffic might grow all of a 
>> sudden. So regarding to hosting I am torn right now, between Pyrox, which 
>> is a small, but accessible Germ hoster and Django Europe, which is 
>> spezialized on Django and LightTTPD. They offer a one click Django install, 
>> but no phone support only tickets. Can anyone give me advice regarding 
>> hosting? Has anyone used on of these two hosters? 
>>
>>  Thanks in advance for your advice
>>   Sabine
>>
>> -- 
>> You received this message because you are subscribed to the Google Groups 
>> "Django users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to django-users...@googlegroups.com .
>> To post to this group, send email to django...@googlegroups.com 
>> .
>> Visit this group at http://groups.google.com/group/django-users.
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/django-users/9efbfc90-c92e-4914-afca-f39b9dee5c6a%40googlegroups.com
>>  
>> 
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To 

Re: Django hosting

2014-09-24 Thread Mark Phillips
Sabine,

I am in the US, so take my advice with a large grain of salt. I usually use
Linode and Digital Ocean as a benchmarks for hosting services. There prices
are very reasonable and they give you all that you need - root shell access
to your own private virtual server. They have great up-time, and my only
complaint has been about their backup service, but then who would really
trust a hosting company to back up your critical data??? Both can scale as
you grow - increasing memory, disk space, bandwidth takes just a few
minutes. Both have European data centers...Linode in London and Digital
Ocean in Amsterdam.

Anyway, Pyrox seems very expensive, and Django Europe is much closer to
Digital Ocean/Linode in price. I am not wild about the process limits at
Django Europe...I tend to think about physical things - memory, disk space,
bandwidth, etc. I am not a good enough sys admin to know which processes to
kill, and the thought of not being able to log in because I am running too
many processes is scary...check the FAQs at Django Europe.

If you have built your own django app for your start-up, I don't think you
really need to pay for "instant-on" django a la Django Europe. You are
quire capable of setting up your own Django production virtual server.
Email and no phone is OK as long as you they have a guaranteed min/max
response time. I assume you will be your own sys admin, so there is not
much they can do for you anyway. Keep good backups and don't push to
production until you have tested the heck out of your new code on a
different, but identical, development server. Practice rolling back to an
earlier release BEFORE you go live. If your site just dies, and you have
good backups, you can create a new node, install from backups, change the
dns on the local name servers, and you are back live in a few minutes. Then
figure out with the hosting folks what went wrong and ask for a refund...;)

Finally, you can get 2 Virtual Private Servers on AWS EC2 for *free* for
the first year.  After that, their pricing is STILL cheaper than Linode or
Digital Ocean.   But you will have to investigate that by setting up mockup
billing as you build your systems and evaluate your needs.  You have a
whole year.  Their free tier includes a good amount of startup resources:
http://aws.amazon.com/free/. Also, your hosting provider today may not be
your hosting provider tomorrowstart free, learn what you need and how
much you need to scale up, and then move to paid hosting. AWS EC2 also has
European data centers.

Anyway, just my 2 cents on hosting. Lots of options.

Mark


On Wed, Sep 24, 2014 at 8:40 PM, Sabine Maennel 
wrote:

> I live in Switzerland and I will launch my startup shortly. It will be a
> very small platform in the beginning but traffic might grow all of a
> sudden. So regarding to hosting I am torn right now, between Pyrox, which
> is a small, but accessible Germ hoster and Django Europe, which is
> spezialized on Django and LightTTPD. They offer a one click Django install,
> but no phone support only tickets. Can anyone give me advice regarding
> hosting? Has anyone used on of these two hosters?
>
>  Thanks in advance for your advice
>   Sabine
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To post to this group, send email to django-users@googlegroups.com.
> Visit this group at http://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/9efbfc90-c92e-4914-afca-f39b9dee5c6a%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAEqej2NcbgSy5OqkWoxz7Ka0WAY62VCuReBumxUtsGdZ8xPZRg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Django hosting

2014-09-24 Thread Sabine Maennel
I live in Switzerland and I will launch my startup shortly. It will be a 
very small platform in the beginning but traffic might grow all of a 
sudden. So regarding to hosting I am torn right now, between Pyrox, which 
is a small, but accessible Germ hoster and Django Europe, which is 
spezialized on Django and LightTTPD. They offer a one click Django install, 
but no phone support only tickets. Can anyone give me advice regarding 
hosting? Has anyone used on of these two hosters? 

 Thanks in advance for your advice
  Sabine

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/9efbfc90-c92e-4914-afca-f39b9dee5c6a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Dreamhost for Django hosting.

2014-03-09 Thread Dan Gentry
I've had good luck hosting an app with a Dreamhost shared hosting account. 
 I even wrote a post about it a couple of years ago. (Maybe I should update 
it for 2014)

http://dashdrum.com/blog/2011/08/django-on-dreamhost/



On Saturday, March 8, 2014 11:53:54 PM UTC-5, Chen Xu wrote:
>
> I am trying to host my Django website on Dreamhost, I am wondering if 
> Dreamhost provides a virtual linux box that can allow you to ssh in?
>
>
>
> Thanks
>
>
> -- 
> ⚡ Chen Xu ⚡ 
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/c0fc29b5-8044-4081-b578-34d9d025d756%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Dreamhost for Django hosting.

2014-03-08 Thread Ezequiel Bertti
Hi,

I use Dreamhost, they don't have a virtualbox on shared server.

But you can use your own python environment with pyenv.

http://wiki.dreamhost.com/Python
https://github.com/yyuu/pyenv-installer
https://github.com/yyuu/pyenv




On Sun, Mar 9, 2014 at 4:53 AM, Chen Xu  wrote:

> I am trying to host my Django website on Dreamhost, I am wondering if
> Dreamhost provides a virtual linux box that can allow you to ssh in?
>
>
>
> Thanks
>
>
> --
> ⚡ Chen Xu ⚡
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To post to this group, send email to django-users@googlegroups.com.
> Visit this group at http://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CACac-qZUXZ4Y0oXpNQCSoSr5TeFByZ3o5%2BityQ%2ByzNKJzNKz4g%40mail.gmail.com
> .
> For more options, visit https://groups.google.com/d/optout.
>



-- 
Ezequiel Bertti
E-Mail: eber...@gmail.com
Cel: (21) 99188-4860

VÁ PARA BÚZIOS!!!
http://www.agh.com.br/
Ane Guest House

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CACrQMYpqw_tRjqu2ou96Vg53iov0_Ypfcbze6G9_ecuUGom%3DMg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Dreamhost for Django hosting.

2014-03-08 Thread Chen Xu
I am trying to host my Django website on Dreamhost, I am wondering if
Dreamhost provides a virtual linux box that can allow you to ssh in?



Thanks


-- 
⚡ Chen Xu ⚡

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CACac-qZUXZ4Y0oXpNQCSoSr5TeFByZ3o5%2BityQ%2ByzNKJzNKz4g%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: VERY cheap django hosting?

2014-01-06 Thread Дмитрий Вержиковский
I use digitalocean.com <https://www.digitalocean.com/?refcode=29c1bcc169e5>. 
For only 5$/month you get a great quick ssd hosting.

среда, 8 июня 2011 г., 9:30:17 UTC+3 пользователь raj написал:
>
> Hey guys, 
> Just wondering if you could give me some hosts that are very cheap for 
> django hosting? Is hostgator any good? I really don't know what to 
> look for in a host. A lot of people are recommending web faction, but 
> its around $9 bucks a month. I was looking in the $5 bucks a month 
> range. Any ideas? Thank you. 
> -Raj

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/aff31d36-0f01-4160-a9a9-db4f3540d4a2%40googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: VERY cheap django hosting?

2014-01-06 Thread Mark Moss
Try instant Django Hosting <http://www.gigapros.com/portal/django-hosting>by 
Gigapros.com ==> 
*http://www.gigapros.com/portal/django-hosting*<http://gigapros.com/portal/django-hosting>
Don't waste your time on installation. Just start using django framework 
out-of-the-box!

-  Mark


On Wednesday, June 8, 2011 12:00:17 PM UTC+5:30, raj wrote:
>
> Hey guys, 
> Just wondering if you could give me some hosts that are very cheap for 
> django hosting? Is hostgator any good? I really don't know what to 
> look for in a host. A lot of people are recommending web faction, but 
> its around $9 bucks a month. I was looking in the $5 bucks a month 
> range. Any ideas? Thank you. 
> -Raj

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/069821ec-ad08-4a1a-bf01-c803ab167da2%40googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Looking for beta testers for new Django hosting

2013-05-23 Thread Michael Anckaert
Hello everyone

We are developing a new Python/wsgi hosting solution and are looking for
beta testers.
The solution we are developing will focus on ease of deployment (git
integration, management of application versions, ...)

Beta testers will receive a free instance on our platform. Don't expect a
stable or production ready environment. Your (testing) projects will live a
bleeding edge fast changing environment!

We would very much appreciate you help in developing this new product. You
can expect to work closely with our developers and your input will be used
in further defining our roadmap.
If you would like to help us out, please send an email to
platform@sinax.bewith some info about you. Ideas about what a good
hosting solution should
have are also very much appreciated.

*Kind regards*

Michael Anckaert
michael.ancka...@sinax.be
http://www.sinax.be

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




Re: Django hosting. Need to run executable for my app

2013-04-09 Thread Avraham Serour
I have a toy account on bluehost, I compiled my own python version on my
$home no problem.
It is slow to run my django projects, but I compile python packages when
pip install wants no problem


On Tue, Apr 9, 2013 at 9:57 PM, Josh Cartmell  wrote:

> +1 for webfaction, it shouldn't be a problem to compile and use your own
> binary with them.
>
>
> On Monday, April 8, 2013 11:52:41 PM UTC-7, larsvegas wrote:
>>
>> Can somebody advice me on a provider where I can run my own executable?
>> The program I need to run is written is c++ and can be installed on windows
>> server or linux. A rough estimation of costs?
>>
>> Thanks!
>>
>  --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To post to this group, send email to django-users@googlegroups.com.
> Visit this group at http://groups.google.com/group/django-users?hl=en.
> For more options, visit https://groups.google.com/groups/opt_out.
>
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




Re: Django hosting. Need to run executable for my app

2013-04-09 Thread Josh Cartmell
+1 for webfaction, it shouldn't be a problem to compile and use your own 
binary with them.

On Monday, April 8, 2013 11:52:41 PM UTC-7, larsvegas wrote:
>
> Can somebody advice me on a provider where I can run my own executable? 
> The program I need to run is written is c++ and can be installed on windows 
> server or linux. A rough estimation of costs?
>
> Thanks! 
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




Re: Django hosting. Need to run executable for my app

2013-04-09 Thread Adam Mesha
On Tue, Apr 9, 2013 at 7:33 PM, Mike  wrote:

> On Tuesday, April 9, 2013 4:48:43 PM UTC+2, ke1g wrote:
>
>> A linux VPS, such as from linode.com would certainly allow this (we pay
>> abotu $20/mo for ours).
>>
>> As to shared hosts, it wouldn't hurt to ask at WebFaction.  If I were
>> them, I'd want to examine the code and do the compiling, and I'd probably
>> want to charge for that code review (or if it's a standard open source tool
>> they might be more inclined to just build and install it for you).
>>
>> Yeah, thats possible, but on the other hand, they don't check your Python
> code (I assume) before you run it on their servers. I don't see why c++
> code would be potentially more dangerous.
>

I have a shared account at WebFaction, and there's no problem with ssh'ing
into the server and compiling your binary in your home directory, then
setting up your personal apache instance to talk to it how you want it to.
gcc is on the shared servers.

-- 
Adam Mesha - *www.mesha.org*

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




Re: Django hosting. Need to run executable for my app

2013-04-09 Thread Tom Evans
On Tue, Apr 9, 2013 at 5:38 PM, Mike  wrote:
>
>
> On Tuesday, April 9, 2013 6:33:08 PM UTC+2, Mike wrote:
>>
>>
>>
>> On Tuesday, April 9, 2013 4:48:43 PM UTC+2, ke1g wrote:
>>>
>>> A linux VPS, such as from linode.com would certainly allow this (we pay
>>> abotu $20/mo for ours).
>>>
>>> As to shared hosts, it wouldn't hurt to ask at WebFaction.  If I were
>>> them, I'd want to examine the code and do the compiling, and I'd probably
>>> want to charge for that code review (or if it's a standard open source tool
>>> they might be more inclined to just build and install it for you).
>>>
>> Yeah, thats possible, but on the other hand, they don't check your Python
>> code (I assume) before you run it on their servers. I don't see why c++ code
>> would be potentially more dangerous.
>
>
> On the other other hand, I did discover a while ago that my shared host
> didn't let me install a python package that required gcc, although they
> installed it for me.  It could be that they just don't want people compiling
> projects in their shared hosting accounts...
>

More likely they don't want a compiler installed at all on a web host,
not the computational cost of compiling.

Cheers

Tom

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




Re: Django hosting. Need to run executable for my app

2013-04-09 Thread Mike


On Tuesday, April 9, 2013 6:33:08 PM UTC+2, Mike wrote:
>
>
>
> On Tuesday, April 9, 2013 4:48:43 PM UTC+2, ke1g wrote:
>>
>> A linux VPS, such as from linode.com would certainly allow this (we pay 
>> abotu $20/mo for ours).
>>
>> As to shared hosts, it wouldn't hurt to ask at WebFaction.  If I were 
>> them, I'd want to examine the code and do the compiling, and I'd probably 
>> want to charge for that code review (or if it's a standard open source tool 
>> they might be more inclined to just build and install it for you).
>>
>> Yeah, thats possible, but on the other hand, they don't check your Python 
> code (I assume) before you run it on their servers. I don't see why c++ 
> code would be potentially more dangerous. 
>

On the other other hand, I did discover a while ago that my shared host 
didn't let me install a python package that required gcc, although they 
installed it for me.  It could be that they just don't want people 
compiling projects in their shared hosting accounts... 

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




Re: Django hosting. Need to run executable for my app

2013-04-09 Thread Mike


On Tuesday, April 9, 2013 4:48:43 PM UTC+2, ke1g wrote:
>
> A linux VPS, such as from linode.com would certainly allow this (we pay 
> abotu $20/mo for ours).
>
> As to shared hosts, it wouldn't hurt to ask at WebFaction.  If I were 
> them, I'd want to examine the code and do the compiling, and I'd probably 
> want to charge for that code review (or if it's a standard open source tool 
> they might be more inclined to just build and install it for you).
>
> Yeah, thats possible, but on the other hand, they don't check your Python 
code (I assume) before you run it on their servers. I don't see why c++ 
code would be potentially more dangerous.   

>
> On Tue, Apr 9, 2013 at 9:23 AM, Mike wrote:
>
>>
>>
>> On Tuesday, April 9, 2013 8:52:41 AM UTC+2, larsvegas wrote:
>>>
>>> Can somebody advice me on a provider where I can run my own executable? 
>>> The program I need to run is written is c++ and can be installed on windows 
>>> server or linux. A rough estimation of costs?
>>>
>>> Thanks! 
>>>
>> Digital Ocean has VPSs starting at 5 USD / month.  Shared hosting usually 
>> starts at about 5/month too.  You may actually be able to run your program 
>> in shared hosting, often they have strict memory and running time 
>> constraints but I don't think mine restricts me from uploading my own 
>> precompiled binary.
>>  
>> -- 
>> You received this message because you are subscribed to the Google Groups 
>> "Django users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to django-users...@googlegroups.com .
>> To post to this group, send email to django...@googlegroups.com
>> .
>> Visit this group at http://groups.google.com/group/django-users?hl=en.
>> For more options, visit https://groups.google.com/groups/opt_out.
>>  
>>  
>>
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




Re: Django hosting. Need to run executable for my app

2013-04-09 Thread Bill Freeman
A linux VPS, such as from linode.com would certainly allow this (we pay
abotu $20/mo for ours).

As to shared hosts, it wouldn't hurt to ask at WebFaction.  If I were them,
I'd want to examine the code and do the compiling, and I'd probably want to
charge for that code review (or if it's a standard open source tool they
might be more inclined to just build and install it for you).


On Tue, Apr 9, 2013 at 9:23 AM, Mike  wrote:

>
>
> On Tuesday, April 9, 2013 8:52:41 AM UTC+2, larsvegas wrote:
>>
>> Can somebody advice me on a provider where I can run my own executable?
>> The program I need to run is written is c++ and can be installed on windows
>> server or linux. A rough estimation of costs?
>>
>> Thanks!
>>
> Digital Ocean has VPSs starting at 5 USD / month.  Shared hosting usually
> starts at about 5/month too.  You may actually be able to run your program
> in shared hosting, often they have strict memory and running time
> constraints but I don't think mine restricts me from uploading my own
> precompiled binary.
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To post to this group, send email to django-users@googlegroups.com.
> Visit this group at http://groups.google.com/group/django-users?hl=en.
> For more options, visit https://groups.google.com/groups/opt_out.
>
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




Re: Django hosting. Need to run executable for my app

2013-04-09 Thread Mike


On Tuesday, April 9, 2013 8:52:41 AM UTC+2, larsvegas wrote:
>
> Can somebody advice me on a provider where I can run my own executable? 
> The program I need to run is written is c++ and can be installed on windows 
> server or linux. A rough estimation of costs?
>
> Thanks! 
>
Digital Ocean has VPSs starting at 5 USD / month.  Shared hosting usually 
starts at about 5/month too.  You may actually be able to run your program 
in shared hosting, often they have strict memory and running time 
constraints but I don't think mine restricts me from uploading my own 
precompiled binary.

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




Django hosting. Need to run executable for my app

2013-04-09 Thread larsvegas
Can somebody advice me on a provider where I can run my own executable? The 
program I need to run is written is c++ and can be installed on windows 
server or linux. A rough estimation of costs?

Thanks! 

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




Re: How is fatcow for django hosting?

2013-02-03 Thread Gladson Simplício Brito
https://www.digitalocean.com


2013/2/3 Ashwin Kumar 

> i use amazon. its easy, fast, cheap, with full controll.
>
> this month my bill is 0$ as its free for 1yr
>
> With Best
> -Ashwin.
> +91-9959166266
>
>
> On Sat, Feb 2, 2013 at 11:16 AM, Mike  wrote:
>
>> I have been shopping for hosting for my project too (in my case a hobby
>> project that I will monetize ).  I don't know anything about Fat Cow but
>> many hosts will give you shell access and let you host django powered
>> sites.  What most won't do is let you run long running background processes
>> such as celery queues.  For my project I might be able to get by for a
>> while by running the background process with cron.  If that's the case for
>> you then make sure your host gives you access to cron.  I'd be interested
>> to know if anyone else is using shared hosting for their Django projects.
>>  I can afford to get a VPS but I don't want to admin my own server
>> unless/until its really necessary.  Now I'm using A Small Orange. Great
>> support.
>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "Django users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to django-users+unsubscr...@googlegroups.com.
>> To post to this group, send email to django-users@googlegroups.com.
>> Visit this group at http://groups.google.com/group/django-users?hl=en.
>> For more options, visit https://groups.google.com/groups/opt_out.
>>
>>
>>
>  --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To post to this group, send email to django-users@googlegroups.com.
> Visit this group at http://groups.google.com/group/django-users?hl=en.
> For more options, visit https://groups.google.com/groups/opt_out.
>
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




Re: How is fatcow for django hosting?

2013-02-03 Thread Ashwin Kumar
i use amazon. its easy, fast, cheap, with full controll.

this month my bill is 0$ as its free for 1yr

With Best
-Ashwin.
+91-9959166266


On Sat, Feb 2, 2013 at 11:16 AM, Mike  wrote:

> I have been shopping for hosting for my project too (in my case a hobby
> project that I will monetize ).  I don't know anything about Fat Cow but
> many hosts will give you shell access and let you host django powered
> sites.  What most won't do is let you run long running background processes
> such as celery queues.  For my project I might be able to get by for a
> while by running the background process with cron.  If that's the case for
> you then make sure your host gives you access to cron.  I'd be interested
> to know if anyone else is using shared hosting for their Django projects.
>  I can afford to get a VPS but I don't want to admin my own server
> unless/until its really necessary.  Now I'm using A Small Orange. Great
> support.
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To post to this group, send email to django-users@googlegroups.com.
> Visit this group at http://groups.google.com/group/django-users?hl=en.
> For more options, visit https://groups.google.com/groups/opt_out.
>
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




Re: How is fatcow for django hosting?

2013-02-01 Thread Mike
I have been shopping for hosting for my project too (in my case a hobby project 
that I will monetize ).  I don't know anything about Fat Cow but many hosts 
will give you shell access and let you host django powered sites.  What most 
won't do is let you run long running background processes such as celery 
queues.  For my project I might be able to get by for a while by running the 
background process with cron.  If that's the case for you then make sure your 
host gives you access to cron.  I'd be interested to know if anyone else is 
using shared hosting for their Django projects.  I can afford to get a VPS but 
I don't want to admin my own server unless/until its really necessary.  Now I'm 
using A Small Orange. Great support.

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




Re: How is fatcow for django hosting?

2013-02-01 Thread frocco
I also am looking at hostgator

On Friday, February 1, 2013 7:40:27 AM UTC-5, frocco wrote:
>
> Hello,
>
> Anyone use them?
> I am trying to compare them to Bluehost.com
>
> Thanks
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




How is fatcow for django hosting?

2013-02-01 Thread frocco
Hello,

Anyone use them?
I am trying to compare them to Bluehost.com

Thanks

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




Re: Django hosting companies

2013-01-30 Thread Nikolas Stevenson-Molnar
+1 if you're dealing with small load, micro instances are super cheap
(free for 1st year, even), as flexible as you need, and you can create
images of a configured machine to launch more instances from.

_Nik

On 1/30/2013 7:16 AM, m1chael wrote:
> aws micro instance
>
> On Tue, Jan 29, 2013 at 10:54 AM, Mengu  wrote:
>> some of my friends are using webfaction. i use linode and in the past
>> i have used webbynode.
>>
>> On Jan 29, 3:17 pm, francislutalo  wrote:
>>> Anyone with an idea of which are the best companies to host my django
>>> applications?
>>>
>>> Thank you,
>>> Regards
>>> francislutalo
>> --
>> You received this message because you are subscribed to the Google Groups 
>> "Django users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to django-users+unsubscr...@googlegroups.com.
>> To post to this group, send email to django-users@googlegroups.com.
>> Visit this group at http://groups.google.com/group/django-users?hl=en.
>> For more options, visit https://groups.google.com/groups/opt_out.
>>
>>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




Re: Django hosting companies

2013-01-30 Thread frocco
Thanks for the info on webfraction.
I currently use bluehost.com, but webfraction looks like better support for 
django.

On Tuesday, January 29, 2013 8:34:54 AM UTC-5, Frankline wrote:
>
> Have you tried webfaction? Very easy to setup.
>
> On Tue, Jan 29, 2013 at 4:30 PM, Gustavo Andres Angulo 
>  > wrote:
>
>> There is a similar solution to Heroku, called nuagehq.com
>>
>>
>>
>> regards
>>
>> On Tue, Jan 29, 2013 at 8:17 AM, francislutalo 
>>  
>> wrote:
>> > Anyone with an idea of which are the best companies to host my django
>> > applications?
>> >
>> >
>> >
>> > Thank you,
>> > Regards
>> > francislutalo
>> >
>> > --
>> > You received this message because you are subscribed to the Google 
>> Groups
>> > "Django users" group.
>> > To unsubscribe from this group and stop receiving emails from it, send 
>> an
>> > email to django-users...@googlegroups.com .
>> > To post to this group, send email to 
>> > django...@googlegroups.com
>> .
>> > Visit this group at http://groups.google.com/group/django-users?hl=en.
>> > For more options, visit https://groups.google.com/groups/opt_out.
>> >
>> >
>>
>> --
>> You received this message because you are subscribed to the Google Groups 
>> "Django users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to django-users...@googlegroups.com .
>> To post to this group, send email to django...@googlegroups.com
>> .
>> Visit this group at http://groups.google.com/group/django-users?hl=en.
>> For more options, visit https://groups.google.com/groups/opt_out.
>>
>>
>>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




Re: Django hosting companies

2013-01-30 Thread jianhui chen
I use google app engine.


On Tue, Jan 29, 2013 at 8:17 AM, francislutalo wrote:

> Anyone with an idea of which are the best companies to host my django
> applications?
>
>
>
> Thank you,
> Regards
> francislutalo
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To post to this group, send email to django-users@googlegroups.com.
> Visit this group at http://groups.google.com/group/django-users?hl=en.
> For more options, visit https://groups.google.com/groups/opt_out.
>
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




Re: Django hosting companies

2013-01-30 Thread m1chael
aws micro instance

On Tue, Jan 29, 2013 at 10:54 AM, Mengu  wrote:
> some of my friends are using webfaction. i use linode and in the past
> i have used webbynode.
>
> On Jan 29, 3:17 pm, francislutalo  wrote:
>> Anyone with an idea of which are the best companies to host my django
>> applications?
>>
>> Thank you,
>> Regards
>> francislutalo
>
> --
> You received this message because you are subscribed to the Google Groups 
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to django-users+unsubscr...@googlegroups.com.
> To post to this group, send email to django-users@googlegroups.com.
> Visit this group at http://groups.google.com/group/django-users?hl=en.
> For more options, visit https://groups.google.com/groups/opt_out.
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




Re: Django hosting companies

2013-01-29 Thread Mengu
some of my friends are using webfaction. i use linode and in the past
i have used webbynode.

On Jan 29, 3:17 pm, francislutalo  wrote:
> Anyone with an idea of which are the best companies to host my django
> applications?
>
> Thank you,
> Regards
> francislutalo

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




Re: Django hosting companies

2013-01-29 Thread Bill Freeman
Plus one on webfaction, if a shared host will do.  If you want a virtual
private server to yourself, I like linode.

Bill

On Tue, Jan 29, 2013 at 10:11 AM, Luiz A. Menezes Filho <
luiz.menez...@gmail.com> wrote:

> These sites may help you:
> http://djangofriendly.com/hosts/
> http://djangohosting.com/
>
> Att,
>
>
> On Tue, Jan 29, 2013 at 1:03 PM, Leonardo S wrote:
>
>> heroku, dotCloud, Gondor.io, webfaction ...
>>
>>
>> 2013/1/29 Frankline 
>>
>>> Have you tried webfaction? Very easy to setup.
>>>
>>> On Tue, Jan 29, 2013 at 4:30 PM, Gustavo Andres Angulo >> > wrote:
>>>
 There is a similar solution to Heroku, called nuagehq.com



 regards

 On Tue, Jan 29, 2013 at 8:17 AM, francislutalo 
 wrote:
 > Anyone with an idea of which are the best companies to host my django
 > applications?
 >
 >
 >
 > Thank you,
 > Regards
 > francislutalo
 >
 > --
 > You received this message because you are subscribed to the Google
 Groups
 > "Django users" group.
 > To unsubscribe from this group and stop receiving emails from it,
 send an
 > email to django-users+unsubscr...@googlegroups.com.
 > To post to this group, send email to django-users@googlegroups.com.
 > Visit this group at http://groups.google.com/group/django-users?hl=en
 .
 > For more options, visit https://groups.google.com/groups/opt_out.
 >
 >

 --
 You received this message because you are subscribed to the Google
 Groups "Django users" group.
 To unsubscribe from this group and stop receiving emails from it, send
 an email to django-users+unsubscr...@googlegroups.com.
 To post to this group, send email to django-users@googlegroups.com.
 Visit this group at http://groups.google.com/group/django-users?hl=en.
 For more options, visit https://groups.google.com/groups/opt_out.



>>>  --
>>> You received this message because you are subscribed to the Google
>>> Groups "Django users" group.
>>> To unsubscribe from this group and stop receiving emails from it, send
>>> an email to django-users+unsubscr...@googlegroups.com.
>>> To post to this group, send email to django-users@googlegroups.com.
>>> Visit this group at http://groups.google.com/group/django-users?hl=en.
>>> For more options, visit https://groups.google.com/groups/opt_out.
>>>
>>>
>>>
>>
>>  --
>> You received this message because you are subscribed to the Google Groups
>> "Django users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to django-users+unsubscr...@googlegroups.com.
>> To post to this group, send email to django-users@googlegroups.com.
>> Visit this group at http://groups.google.com/group/django-users?hl=en.
>> For more options, visit https://groups.google.com/groups/opt_out.
>>
>>
>>
>
>
>
> --
> Luiz Menezes
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To post to this group, send email to django-users@googlegroups.com.
> Visit this group at http://groups.google.com/group/django-users?hl=en.
> For more options, visit https://groups.google.com/groups/opt_out.
>
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




Re: Django hosting companies

2013-01-29 Thread Luiz A. Menezes Filho
These sites may help you:
http://djangofriendly.com/hosts/
http://djangohosting.com/

Att,

On Tue, Jan 29, 2013 at 1:03 PM, Leonardo S wrote:

> heroku, dotCloud, Gondor.io, webfaction ...
>
>
> 2013/1/29 Frankline 
>
>> Have you tried webfaction? Very easy to setup.
>>
>> On Tue, Jan 29, 2013 at 4:30 PM, Gustavo Andres Angulo 
>> wrote:
>>
>>> There is a similar solution to Heroku, called nuagehq.com
>>>
>>>
>>>
>>> regards
>>>
>>> On Tue, Jan 29, 2013 at 8:17 AM, francislutalo 
>>> wrote:
>>> > Anyone with an idea of which are the best companies to host my django
>>> > applications?
>>> >
>>> >
>>> >
>>> > Thank you,
>>> > Regards
>>> > francislutalo
>>> >
>>> > --
>>> > You received this message because you are subscribed to the Google
>>> Groups
>>> > "Django users" group.
>>> > To unsubscribe from this group and stop receiving emails from it, send
>>> an
>>> > email to django-users+unsubscr...@googlegroups.com.
>>> > To post to this group, send email to django-users@googlegroups.com.
>>> > Visit this group at http://groups.google.com/group/django-users?hl=en.
>>> > For more options, visit https://groups.google.com/groups/opt_out.
>>> >
>>> >
>>>
>>> --
>>> You received this message because you are subscribed to the Google
>>> Groups "Django users" group.
>>> To unsubscribe from this group and stop receiving emails from it, send
>>> an email to django-users+unsubscr...@googlegroups.com.
>>> To post to this group, send email to django-users@googlegroups.com.
>>> Visit this group at http://groups.google.com/group/django-users?hl=en.
>>> For more options, visit https://groups.google.com/groups/opt_out.
>>>
>>>
>>>
>>  --
>> You received this message because you are subscribed to the Google Groups
>> "Django users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to django-users+unsubscr...@googlegroups.com.
>> To post to this group, send email to django-users@googlegroups.com.
>> Visit this group at http://groups.google.com/group/django-users?hl=en.
>> For more options, visit https://groups.google.com/groups/opt_out.
>>
>>
>>
>
>  --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To post to this group, send email to django-users@googlegroups.com.
> Visit this group at http://groups.google.com/group/django-users?hl=en.
> For more options, visit https://groups.google.com/groups/opt_out.
>
>
>



-- 
Luiz Menezes

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




Re: Django hosting companies

2013-01-29 Thread Leonardo S
heroku, dotCloud, Gondor.io, webfaction ...


2013/1/29 Frankline 

> Have you tried webfaction? Very easy to setup.
>
> On Tue, Jan 29, 2013 at 4:30 PM, Gustavo Andres Angulo 
> wrote:
>
>> There is a similar solution to Heroku, called nuagehq.com
>>
>>
>>
>> regards
>>
>> On Tue, Jan 29, 2013 at 8:17 AM, francislutalo 
>> wrote:
>> > Anyone with an idea of which are the best companies to host my django
>> > applications?
>> >
>> >
>> >
>> > Thank you,
>> > Regards
>> > francislutalo
>> >
>> > --
>> > You received this message because you are subscribed to the Google
>> Groups
>> > "Django users" group.
>> > To unsubscribe from this group and stop receiving emails from it, send
>> an
>> > email to django-users+unsubscr...@googlegroups.com.
>> > To post to this group, send email to django-users@googlegroups.com.
>> > Visit this group at http://groups.google.com/group/django-users?hl=en.
>> > For more options, visit https://groups.google.com/groups/opt_out.
>> >
>> >
>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "Django users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to django-users+unsubscr...@googlegroups.com.
>> To post to this group, send email to django-users@googlegroups.com.
>> Visit this group at http://groups.google.com/group/django-users?hl=en.
>> For more options, visit https://groups.google.com/groups/opt_out.
>>
>>
>>
>  --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To post to this group, send email to django-users@googlegroups.com.
> Visit this group at http://groups.google.com/group/django-users?hl=en.
> For more options, visit https://groups.google.com/groups/opt_out.
>
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




Re: Django hosting companies

2013-01-29 Thread Frankline
Have you tried webfaction? Very easy to setup.

On Tue, Jan 29, 2013 at 4:30 PM, Gustavo Andres Angulo wrote:

> There is a similar solution to Heroku, called nuagehq.com
>
>
>
> regards
>
> On Tue, Jan 29, 2013 at 8:17 AM, francislutalo 
> wrote:
> > Anyone with an idea of which are the best companies to host my django
> > applications?
> >
> >
> >
> > Thank you,
> > Regards
> > francislutalo
> >
> > --
> > You received this message because you are subscribed to the Google Groups
> > "Django users" group.
> > To unsubscribe from this group and stop receiving emails from it, send an
> > email to django-users+unsubscr...@googlegroups.com.
> > To post to this group, send email to django-users@googlegroups.com.
> > Visit this group at http://groups.google.com/group/django-users?hl=en.
> > For more options, visit https://groups.google.com/groups/opt_out.
> >
> >
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To post to this group, send email to django-users@googlegroups.com.
> Visit this group at http://groups.google.com/group/django-users?hl=en.
> For more options, visit https://groups.google.com/groups/opt_out.
>
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




Re: Django hosting companies

2013-01-29 Thread Gustavo Andres Angulo
There is a similar solution to Heroku, called nuagehq.com



regards

On Tue, Jan 29, 2013 at 8:17 AM, francislutalo  wrote:
> Anyone with an idea of which are the best companies to host my django
> applications?
>
>
>
> Thank you,
> Regards
> francislutalo
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To post to this group, send email to django-users@googlegroups.com.
> Visit this group at http://groups.google.com/group/django-users?hl=en.
> For more options, visit https://groups.google.com/groups/opt_out.
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




Django hosting companies

2013-01-29 Thread francislutalo
Anyone with an idea of which are the best companies to host my django 
applications?



Thank you,
Regards
francislutalo

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




Re: Affordable Django hosting solution in India/around?

2012-06-29 Thread Bjarni Rúnar Einarsson
On Tue, Jun 26, 2012 at 4:56 AM, Kartik Singhal  wrote:
>
> If nothing else works out our last option will be to host in college
> servers, but that involves additional headache being unreliable.

Out of curiosity, what is it that makes your college servers
unreliable?  Poor networks or power fluctuations...?

Until I saw this comment I was going to suggest you just host it
yourself on a static IP somewhere (or using PageKite to tunnel out if
you are stuck behind NAT), as it seems you should have very modest
bandwidth requirements.

-- 
Bjarni R. Einarsson
Founder, lead developer of PageKite.

Make localhost servers visible to the world: https://pagekite.net/

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: Affordable Django hosting solution in India/around?

2012-06-25 Thread Kartik Singhal
Thanks for all your answers. My response inline:

On Mon, Jun 25, 2012 at 6:35 PM, Phang Mulianto  wrote:

> Afforadble / cheap is relative variable there in my opinion. you mention
> 8$ / month stil expensive and unaffordable for you.
> in other country it is cheap (us).
>

I was actually referring to Web Faction with that price range -
http://www.webfaction.com/services/hosting - any ideas regarding this?


> better way you lease a vps and join with other fellow there to share the
> resource and split the payment.
>

Yes, I am considering this option though it's difficult to find people
interested in this. I will try anyhow.

On Tue, Jun 26, 2012 at 1:27 AM, Babatunde Akinyanmi 
 wrote:

> Alwaysdata(.com) offers free hosting but its shared hosting


I checked it up but 10 MB is too limiting for even basic needs.


On Tue, Jun 26, 2012 at 2:56 AM, Kurtis Mullins wrote:

> Just go with Amazon Web Services. You get a year for free on their
> lightest server. The only minor issue is you have to set it up yourself --
> but that's really not difficult to do.
>

AWS seems like a good option as both Kurtis and Phang point out. I am also
considering GAE but apparently for that we will need to rewrite most of the
code to fit their data storage model, can anybody shed some light on this?


> There are times when certain hosting providers do help out legitimate
> not-for-profit organizations. You can try looking into that, as well.
>

Yes, this is true, while inquiring with one web host in India, they agreed
to offer straight 20-30% discount but still their VPS-based plans were out
of reach for us.

If nothing else works out our last option will be to host in college
servers, but that involves additional headache being unreliable.

-- 
Kartik
http://k4rtik.wordpress.com/

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: Affordable Django hosting solution in India/around?

2012-06-25 Thread Kurtis Mullins
Just go with Amazon Web Services. You get a year for free on their lightest
server. The only minor issue is you have to set it up yourself -- but
that's really not difficult to do.

By the way, $8/month is incredibly little to pay. I guess in India that
might be more money than it is here -- but just remember you get what you
pay for. Also, you may have better luck in India with hosting at a better
cost since the electricity to host a site here would be way more than that.

There are times when certain hosting providers do help out legitimate
not-for-profit organizations. You can try looking into that, as well.

On Mon, Jun 25, 2012 at 3:57 PM, Babatunde Akinyanmi
wrote:

> Alwaysdata(.com) offers free hosting but its shared hosting
>
> On 6/25/12, Phang Mulianto  wrote:
> > Hi,
> >
> > some thing people search... reliable and cheap / affordable.
> >
> > Afforadble / cheap is relative variable there in my opinion. you mention
> 8$
> > / month stil expensive and unaffordable for you.
> > in other country it is cheap (us).
> >
> > even the cheap one in amazon aws around 8 -10 $ / month with standart
> > package.
> >
> > but you know amazon have free account for 1 years you can try. but if you
> > need permanent you need to pay.
> >
> > better way you lease a vps and join with other fellow there to share the
> > resource and split the payment.
> >
> > Regards,
> >
> > Mulianto
> >
> > On Mon, Jun 25, 2012 at 8:52 PM, Kartik Singhal
> > wrote:
> >
> >> Hi
> >>
> >> We are a small non-profit all-students organization conducting a
> >> TEDxevent in our college soon. We have built a
> >> basic django-based web app for
> >> speaker nomination, participant registration, blog, etc. and other
> mostly
> >> static content.
> >>
> >> Regarding this I am looking for a reliable and affordable web hosting
> >> solution (preferably in India). Since our requirement is pretty small,
> >> hosting on a VPS on upwards of 8$/month or more seems expensive and
> >> unaffordable for us. Are there any web hosts catering to requirements of
> >> small organizations like us?
> >>
> >> I should also add - our previous website was based off Drupal (PHP based
> >> CMS) and we would like to maintain an archive of that too, if possible,
> >> on
> >> this new hosting solution, but this is not a primary requirement.
> >>
> >> --
> >> Kartik
> >> http://k4rtik.wordpress.com/
> >>
> >>
> >>  --
> >> You received this message because you are subscribed to the Google
> Groups
> >> "Django users" group.
> >> To post to this group, send email to django-users@googlegroups.com.
> >> To unsubscribe from this group, send email to
> >> django-users+unsubscr...@googlegroups.com.
> >> For more options, visit this group at
> >> http://groups.google.com/group/django-users?hl=en.
> >>
> >
> > --
> > You received this message because you are subscribed to the Google Groups
> > "Django users" group.
> > To post to this group, send email to django-users@googlegroups.com.
> > To unsubscribe from this group, send email to
> > django-users+unsubscr...@googlegroups.com.
> > For more options, visit this group at
> > http://groups.google.com/group/django-users?hl=en.
> >
> >
>
> --
> Sent from my mobile device
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To post to this group, send email to django-users@googlegroups.com.
> To unsubscribe from this group, send email to
> django-users+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/django-users?hl=en.
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: Affordable Django hosting solution in India/around?

2012-06-25 Thread Babatunde Akinyanmi
Alwaysdata(.com) offers free hosting but its shared hosting

On 6/25/12, Phang Mulianto  wrote:
> Hi,
>
> some thing people search... reliable and cheap / affordable.
>
> Afforadble / cheap is relative variable there in my opinion. you mention 8$
> / month stil expensive and unaffordable for you.
> in other country it is cheap (us).
>
> even the cheap one in amazon aws around 8 -10 $ / month with standart
> package.
>
> but you know amazon have free account for 1 years you can try. but if you
> need permanent you need to pay.
>
> better way you lease a vps and join with other fellow there to share the
> resource and split the payment.
>
> Regards,
>
> Mulianto
>
> On Mon, Jun 25, 2012 at 8:52 PM, Kartik Singhal
> wrote:
>
>> Hi
>>
>> We are a small non-profit all-students organization conducting a
>> TEDxevent in our college soon. We have built a
>> basic django-based web app for
>> speaker nomination, participant registration, blog, etc. and other mostly
>> static content.
>>
>> Regarding this I am looking for a reliable and affordable web hosting
>> solution (preferably in India). Since our requirement is pretty small,
>> hosting on a VPS on upwards of 8$/month or more seems expensive and
>> unaffordable for us. Are there any web hosts catering to requirements of
>> small organizations like us?
>>
>> I should also add - our previous website was based off Drupal (PHP based
>> CMS) and we would like to maintain an archive of that too, if possible,
>> on
>> this new hosting solution, but this is not a primary requirement.
>>
>> --
>> Kartik
>> http://k4rtik.wordpress.com/
>>
>>
>>  --
>> You received this message because you are subscribed to the Google Groups
>> "Django users" group.
>> To post to this group, send email to django-users@googlegroups.com.
>> To unsubscribe from this group, send email to
>> django-users+unsubscr...@googlegroups.com.
>> For more options, visit this group at
>> http://groups.google.com/group/django-users?hl=en.
>>
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To post to this group, send email to django-users@googlegroups.com.
> To unsubscribe from this group, send email to
> django-users+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/django-users?hl=en.
>
>

-- 
Sent from my mobile device

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: Affordable Django hosting solution in India/around?

2012-06-25 Thread Phang Mulianto
Hi,

some thing people search... reliable and cheap / affordable.

Afforadble / cheap is relative variable there in my opinion. you mention 8$
/ month stil expensive and unaffordable for you.
in other country it is cheap (us).

even the cheap one in amazon aws around 8 -10 $ / month with standart
package.

but you know amazon have free account for 1 years you can try. but if you
need permanent you need to pay.

better way you lease a vps and join with other fellow there to share the
resource and split the payment.

Regards,

Mulianto

On Mon, Jun 25, 2012 at 8:52 PM, Kartik Singhal wrote:

> Hi
>
> We are a small non-profit all-students organization conducting a 
> TEDxevent in our college soon. We have built a basic 
> django-based web app for
> speaker nomination, participant registration, blog, etc. and other mostly
> static content.
>
> Regarding this I am looking for a reliable and affordable web hosting
> solution (preferably in India). Since our requirement is pretty small,
> hosting on a VPS on upwards of 8$/month or more seems expensive and
> unaffordable for us. Are there any web hosts catering to requirements of
> small organizations like us?
>
> I should also add - our previous website was based off Drupal (PHP based
> CMS) and we would like to maintain an archive of that too, if possible, on
> this new hosting solution, but this is not a primary requirement.
>
> --
> Kartik
> http://k4rtik.wordpress.com/
>
>
>  --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To post to this group, send email to django-users@googlegroups.com.
> To unsubscribe from this group, send email to
> django-users+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/django-users?hl=en.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Affordable Django hosting solution in India/around?

2012-06-25 Thread Kartik Singhal
Hi

We are a small non-profit all-students organization conducting a
TEDxevent in our college soon. We have built
a basic django-based web app for
speaker nomination, participant registration, blog, etc. and other mostly
static content.

Regarding this I am looking for a reliable and affordable web hosting
solution (preferably in India). Since our requirement is pretty small,
hosting on a VPS on upwards of 8$/month or more seems expensive and
unaffordable for us. Are there any web hosts catering to requirements of
small organizations like us?

I should also add - our previous website was based off Drupal (PHP based
CMS) and we would like to maintain an archive of that too, if possible, on
this new hosting solution, but this is not a primary requirement.

-- 
Kartik
http://k4rtik.wordpress.com/

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: Django hosting on heroku - any experiences?

2012-06-11 Thread Cal Leeming [Simplicity Media Ltd]
If so, that would make a lot of sense :)

On Mon, Jun 11, 2012 at 11:00 PM, Javier Guerra Giraldez  wrote:

> On Mon, Jun 11, 2012 at 4:56 PM, Cal Leeming [Simplicity Media Ltd]
>  wrote:
> > As such - I get the impression that any developer who knows how to
> maintain
> > a stack, will most likely shy away from such a service.
>
> wasn't Heroku initially for RoR only?  that might explain that
> "selling point"...
>
> --
> Javier
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To post to this group, send email to django-users@googlegroups.com.
> To unsubscribe from this group, send email to
> django-users+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/django-users?hl=en.
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: Django hosting on heroku - any experiences?

2012-06-11 Thread Javier Guerra Giraldez
On Mon, Jun 11, 2012 at 4:56 PM, Cal Leeming [Simplicity Media Ltd]
 wrote:
> As such - I get the impression that any developer who knows how to maintain
> a stack, will most likely shy away from such a service.

wasn't Heroku initially for RoR only?  that might explain that
"selling point"...

-- 
Javier

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: Django hosting on heroku - any experiences?

2012-06-11 Thread Cal Leeming [Simplicity Media Ltd]
That's a good point - I think maybe the issue is just with PaaS in general,
not specifically Heroku.

On Mon, Jun 11, 2012 at 10:56 PM, Javier Guerra Giraldez  wrote:

> On Mon, Jun 11, 2012 at 4:42 PM, Cal Leeming [Simplicity Media Ltd]
>  wrote:
> > There's a huge difference between hosting servers in the cloud, and
> hosting
> > applications in the cloud.
>
> my general impression is that PaaS can be very nice, but sice there's
> no real standards in place, you end up locked in a single provider.
>
> in contrast, IaaS offers differ mostly in performace, capacity, price,
> etc.  in the worst case, you might need different deployment scripts;
> but these are a small fraction of the whole effort.
>
> --
> Javier
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To post to this group, send email to django-users@googlegroups.com.
> To unsubscribe from this group, send email to
> django-users+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/django-users?hl=en.
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: Django hosting on heroku - any experiences?

2012-06-11 Thread Javier Guerra Giraldez
On Mon, Jun 11, 2012 at 4:42 PM, Cal Leeming [Simplicity Media Ltd]
 wrote:
> There's a huge difference between hosting servers in the cloud, and hosting
> applications in the cloud.

my general impression is that PaaS can be very nice, but sice there's
no real standards in place, you end up locked in a single provider.

in contrast, IaaS offers differ mostly in performace, capacity, price,
etc.  in the worst case, you might need different deployment scripts;
but these are a small fraction of the whole effort.

-- 
Javier

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: Django hosting on heroku - any experiences?

2012-06-11 Thread Cal Leeming [Simplicity Media Ltd]
Thanks for this very detailed report, Rolo.

It seems to be in-line with the article written up by David Cramer (in prev
reply), and also other posts that I've read on the topic.

One of the things that put me off from reading their site, is that Heroku's
key selling point was "Never touch the command line again"...  Sorry but, I
think that's not really the sort of mind set a developer should have tbh.

On top of this, their pricing structure was extremely overpriced

I also really don't like the idea of not being in control of the solution
in the event of a problem... I mean hell - some of our clients that pay
tens of thousands for managed hosting, still provide us with root access
for "critical emergencies".

As such - I get the impression that any developer who knows how to maintain
a stack, will most likely shy away from such a service.

It would be interesting to hear other thoughts on this though

Cal


On Mon, Jun 11, 2012 at 9:54 PM, Rolo  wrote:

> Could anyone hosting their Django app with Heroku care to post their
>> experiences?
>>
>
> I'm somewhere along the road of seeing if PaaS could make my life easier,
> and we've been using Heroku for a client (their choice) recently, having
> evaluated it a couple of months ago for a different one and decided against
> it.
>
> There are lots of things to like.  The tools are awesome as a whole - you
> can add a service with a one liner, you have database forking and
> following, account security policy allowing several users access with one
> paying a bill, it's lovely.
> The performance of the web stack seems good, but I've not used it
> extensively in production so can't quantify it, but I know I've used other
> services where I've been put off immediately.
>
> There are some things which put me off though:
> - The nature of it being a magic box.  You type the command, and it
> usually works, but if it doesn't there's nothing much you can do about it.
>  This isn't to do with Heroku as such, but PaaS as a whole I suppose.
>  Recently my database wouldn't reset itself, and it required a support
> ticket, but by the time they'd viewed it it has just started working again
> with no explanation.  It frustrates me not being able to troubleshoot these
> things myself.
> - There are some oddities around the setup, which don't lock you in as
> such, but will mean you'll probably have to bend your app a bit to get it
> running (sasl auth for memcached, ephemeral filesystem).
> - No UK data centres, just a single EC2 US region.
>
> Personally, for me, right now I wouldn't trust Heroku alone with a client
> site that we were being paid to manage.  I haven't been reviewing the
> service very long, but there have been a couple of instances of downtime
> (there was one at the end of last week for about an hour), and it's the
> sort of downtime where you're completely in the hands of someone else.
>
> All told, if they offered a second availability zone for failover it may
> well be worth it for me, but right now I'd need to build in failover
> externally, which means you may as well manage it yourself to begin with (I
> can't fault Linode for the DIY approach right now).
>
> I have an app running on there with a monitor on it now to keep an eye on
> things, and I'm sure one day I'll end up on Heroku or something similar,
> but not quite yet.
>
> Rolo.
>
> --
> Rolo Mawlabaux
> Wildfish Ltd | http://wildfish.com
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To view this discussion on the web visit
> https://groups.google.com/d/msg/django-users/-/XB3ynrrwxHoJ.
>
> To post to this group, send email to django-users@googlegroups.com.
> To unsubscribe from this group, send email to
> django-users+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/django-users?hl=en.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: Django hosting on heroku - any experiences?

2012-06-11 Thread Cal Leeming [Simplicity Media Ltd]
To be honest, I absolutely agree with all the general comments that Cramer
made in that article.

There's a huge difference between hosting servers in the cloud, and hosting
applications in the cloud.

On Mon, Jun 11, 2012 at 6:41 PM, CLIFFORD ILKAY
wrote:

> On 06/11/2012 01:27 PM, Cal Leeming [Simplicity Media Ltd] wrote:
>
>> Been a while since my last post!
>>
>> Read through some of the archives, but couldn't seem to find many user
>> reviews on Heroku from django-users list.
>>
>
> You might want to read this:  06/02/the-cloud-is-not-for-**you/>.
> He makes some very good points.
> --
> Regards,
>
> Clifford Ilkay
> Dinamis
> 1419-3230 Yonge St.
> Toronto, ON
> Canada  M4N 3P6
>
> 
> +1 416-410-3326
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To post to this group, send email to django-users@googlegroups.com.
> To unsubscribe from this group, send email to django-users+unsubscribe@**
> googlegroups.com .
> For more options, visit this group at http://groups.google.com/**
> group/django-users?hl=en
> .
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: Django hosting on heroku - any experiences?

2012-06-11 Thread Rolo

>
> Could anyone hosting their Django app with Heroku care to post their 
> experiences? 
>

I'm somewhere along the road of seeing if PaaS could make my life easier, 
and we've been using Heroku for a client (their choice) recently, having 
evaluated it a couple of months ago for a different one and decided against 
it.

There are lots of things to like.  The tools are awesome as a whole - you 
can add a service with a one liner, you have database forking and 
following, account security policy allowing several users access with one 
paying a bill, it's lovely.
The performance of the web stack seems good, but I've not used it 
extensively in production so can't quantify it, but I know I've used other 
services where I've been put off immediately.

There are some things which put me off though:
- The nature of it being a magic box.  You type the command, and it usually 
works, but if it doesn't there's nothing much you can do about it.  This 
isn't to do with Heroku as such, but PaaS as a whole I suppose.  Recently 
my database wouldn't reset itself, and it required a support ticket, but by 
the time they'd viewed it it has just started working again with no 
explanation.  It frustrates me not being able to troubleshoot these things 
myself.
- There are some oddities around the setup, which don't lock you in as 
such, but will mean you'll probably have to bend your app a bit to get it 
running (sasl auth for memcached, ephemeral filesystem).
- No UK data centres, just a single EC2 US region.

Personally, for me, right now I wouldn't trust Heroku alone with a client 
site that we were being paid to manage.  I haven't been reviewing the 
service very long, but there have been a couple of instances of downtime 
(there was one at the end of last week for about an hour), and it's the 
sort of downtime where you're completely in the hands of someone else.

All told, if they offered a second availability zone for failover it may 
well be worth it for me, but right now I'd need to build in failover 
externally, which means you may as well manage it yourself to begin with (I 
can't fault Linode for the DIY approach right now).

I have an app running on there with a monitor on it now to keep an eye on 
things, and I'm sure one day I'll end up on Heroku or something similar, 
but not quite yet.

Rolo.

-- 
Rolo Mawlabaux
Wildfish Ltd | http://wildfish.com

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/django-users/-/XB3ynrrwxHoJ.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: Django hosting on heroku - any experiences?

2012-06-11 Thread CLIFFORD ILKAY

On 06/11/2012 01:27 PM, Cal Leeming [Simplicity Media Ltd] wrote:

Been a while since my last post!

Read through some of the archives, but couldn't seem to find many user
reviews on Heroku from django-users list.


You might want to read this: 
. He makes 
some very good points.

--
Regards,

Clifford Ilkay
Dinamis
1419-3230 Yonge St.
Toronto, ON
Canada  M4N 3P6


+1 416-410-3326

--
You received this message because you are subscribed to the Google Groups "Django 
users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Django hosting on heroku - any experiences?

2012-06-11 Thread Cal Leeming [Simplicity Media Ltd]
Been a while since my last post!

Read through some of the archives, but couldn't seem to find many user
reviews on Heroku from django-users list.

Could anyone hosting their Django app with Heroku care to post their
experiences?

Looking for info like:

 * Downtime experiences (how long, how critical, whose fault, was
communication any good etc).
 * Performance/latency (any issues with slow/intermittent requests?)
 * MySQL performance (again, any latency or slow query problems?)
 * General overview of your impression of the company
 * Any good/bad experiences/points in as much detail as possible
 * Comparisons of good/bad points against other providers (i.e. if
they do something bad, name a different provider that does that
specific item better)

Would be good if we could get a thread going which gets a solid answer
on the topic for others to benefit from in future.

Thanks

Cal

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: newbie django hosting question

2012-03-14 Thread NENAD CIKIC
I have gone with linode, and i setup the vps as i did with my
virtualbox. No surprises and i am alive now.

On 13 ožu, 16:11, Bill Freeman <ke1g...@gmail.com> wrote:
> I'm not sure that "django hosting" nails anything down.  It could mean
> whatever the provider wants it to mean, from "we won't kick you off
> for using a non-Microsoft tool" to "we understand django and will help
> you deploy, debug, and maintian it".
>
> One significant variation from VPS that you should know about is
> shared hosting, which is what I call what Webfaction does (we use them
> to host several client sites, both django and plone).  You get an
> account on a machine, rather than a virtual machine, your choice of
> pre-configured starting configurations of several different
> frameworks, or the tools you need to roll your own, and a management
> interface to get your domains virtual hosted by the host wide front
> end to to ports they assign for your back end(s).  You also get a
> database in their server.  They have the permissings figured out so
> the various accounts don't leak to one another, but you can still have
> slow downs if one of  your machine mates starts taking more than his
> allotment of time or memory (they do detect and kill such back ends
> reasonably promptly).  The benefit is that you don't have to do os
> management, but you are also more restricted than you would be in a
> VPS.
>
> Bill
>
> On 3/13/12, NENAD CIKIC <nenad.ci...@gmail.com> wrote:
>
>
>
>
>
>
>
> > I now need to put on web the small project i have developed. To test
> > and to skill me on linux, I have created virtualbox ubuntu VM and
> > deployed the project and used nginx to serve it (all from scratch).
>
> > May someone provide me clarification on the following:
> > - what is the difference between "django hosting" and normal VPS?
>
> > What i get with more with django hosting?
> > Thanks
>
> > --
> > You received this message because you are subscribed to the Google Groups
> > "Django users" group.
> > To post to this group, send email to django-users@googlegroups.com.
> > To unsubscribe from this group, send email to
> > django-users+unsubscr...@googlegroups.com.
> > For more options, visit this group at
> >http://groups.google.com/group/django-users?hl=en.

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: newbie django hosting question

2012-03-14 Thread Scott Macri
I decided to go with webfraction based on your recommendation.  I just
setup my account and will let you know how it goes.  Thanks. :)

On Tue, Mar 13, 2012 at 11:27 AM, NENAD CIKIC <nenad.ci...@gmail.com> wrote:
> OK, thanks.
>
> On 13 ožu, 16:11, Bill Freeman <ke1g...@gmail.com> wrote:
>> I'm not sure that "django hosting" nails anything down.  It could mean
>> whatever the provider wants it to mean, from "we won't kick you off
>> for using a non-Microsoft tool" to "we understand django and will help
>> you deploy, debug, and maintian it".
>>
>> One significant variation from VPS that you should know about is
>> shared hosting, which is what I call what Webfaction does (we use them
>> to host several client sites, both django and plone).  You get an
>> account on a machine, rather than a virtual machine, your choice of
>> pre-configured starting configurations of several different
>> frameworks, or the tools you need to roll your own, and a management
>> interface to get your domains virtual hosted by the host wide front
>> end to to ports they assign for your back end(s).  You also get a
>> database in their server.  They have the permissings figured out so
>> the various accounts don't leak to one another, but you can still have
>> slow downs if one of  your machine mates starts taking more than his
>> allotment of time or memory (they do detect and kill such back ends
>> reasonably promptly).  The benefit is that you don't have to do os
>> management, but you are also more restricted than you would be in a
>> VPS.
>>
>> Bill
>>
>> On 3/13/12, NENAD CIKIC <nenad.ci...@gmail.com> wrote:
>>
>>
>>
>>
>>
>>
>>
>> > I now need to put on web the small project i have developed. To test
>> > and to skill me on linux, I have created virtualbox ubuntu VM and
>> > deployed the project and used nginx to serve it (all from scratch).
>>
>> > May someone provide me clarification on the following:
>> > - what is the difference between "django hosting" and normal VPS?
>>
>> > What i get with more with django hosting?
>> > Thanks
>>
>> > --
>> > You received this message because you are subscribed to the Google Groups
>> > "Django users" group.
>> > To post to this group, send email to django-users@googlegroups.com.
>> > To unsubscribe from this group, send email to
>> > django-users+unsubscr...@googlegroups.com.
>> > For more options, visit this group at
>> >http://groups.google.com/group/django-users?hl=en.
>
> --
> You received this message because you are subscribed to the Google Groups 
> "Django users" group.
> To post to this group, send email to django-users@googlegroups.com.
> To unsubscribe from this group, send email to 
> django-users+unsubscr...@googlegroups.com.
> For more options, visit this group at 
> http://groups.google.com/group/django-users?hl=en.
>



-- 
Scott A. Macri
www.ScottMacri.com
(571) 234-1581

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: newbie django hosting question

2012-03-13 Thread NENAD CIKIC
OK, thanks.

On 13 ožu, 16:11, Bill Freeman <ke1g...@gmail.com> wrote:
> I'm not sure that "django hosting" nails anything down.  It could mean
> whatever the provider wants it to mean, from "we won't kick you off
> for using a non-Microsoft tool" to "we understand django and will help
> you deploy, debug, and maintian it".
>
> One significant variation from VPS that you should know about is
> shared hosting, which is what I call what Webfaction does (we use them
> to host several client sites, both django and plone).  You get an
> account on a machine, rather than a virtual machine, your choice of
> pre-configured starting configurations of several different
> frameworks, or the tools you need to roll your own, and a management
> interface to get your domains virtual hosted by the host wide front
> end to to ports they assign for your back end(s).  You also get a
> database in their server.  They have the permissings figured out so
> the various accounts don't leak to one another, but you can still have
> slow downs if one of  your machine mates starts taking more than his
> allotment of time or memory (they do detect and kill such back ends
> reasonably promptly).  The benefit is that you don't have to do os
> management, but you are also more restricted than you would be in a
> VPS.
>
> Bill
>
> On 3/13/12, NENAD CIKIC <nenad.ci...@gmail.com> wrote:
>
>
>
>
>
>
>
> > I now need to put on web the small project i have developed. To test
> > and to skill me on linux, I have created virtualbox ubuntu VM and
> > deployed the project and used nginx to serve it (all from scratch).
>
> > May someone provide me clarification on the following:
> > - what is the difference between "django hosting" and normal VPS?
>
> > What i get with more with django hosting?
> > Thanks
>
> > --
> > You received this message because you are subscribed to the Google Groups
> > "Django users" group.
> > To post to this group, send email to django-users@googlegroups.com.
> > To unsubscribe from this group, send email to
> > django-users+unsubscr...@googlegroups.com.
> > For more options, visit this group at
> >http://groups.google.com/group/django-users?hl=en.

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: newbie django hosting question

2012-03-13 Thread Bill Freeman
I'm not sure that "django hosting" nails anything down.  It could mean
whatever the provider wants it to mean, from "we won't kick you off
for using a non-Microsoft tool" to "we understand django and will help
you deploy, debug, and maintian it".

One significant variation from VPS that you should know about is
shared hosting, which is what I call what Webfaction does (we use them
to host several client sites, both django and plone).  You get an
account on a machine, rather than a virtual machine, your choice of
pre-configured starting configurations of several different
frameworks, or the tools you need to roll your own, and a management
interface to get your domains virtual hosted by the host wide front
end to to ports they assign for your back end(s).  You also get a
database in their server.  They have the permissings figured out so
the various accounts don't leak to one another, but you can still have
slow downs if one of  your machine mates starts taking more than his
allotment of time or memory (they do detect and kill such back ends
reasonably promptly).  The benefit is that you don't have to do os
management, but you are also more restricted than you would be in a
VPS.

Bill

On 3/13/12, NENAD CIKIC <nenad.ci...@gmail.com> wrote:
> I now need to put on web the small project i have developed. To test
> and to skill me on linux, I have created virtualbox ubuntu VM and
> deployed the project and used nginx to serve it (all from scratch).
>
> May someone provide me clarification on the following:
> - what is the difference between "django hosting" and normal VPS?
>
> What i get with more with django hosting?
> Thanks
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To post to this group, send email to django-users@googlegroups.com.
> To unsubscribe from this group, send email to
> django-users+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/django-users?hl=en.
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



newbie django hosting question

2012-03-12 Thread NENAD CIKIC
I now need to put on web the small project i have developed. To test
and to skill me on linux, I have created virtualbox ubuntu VM and
deployed the project and used nginx to serve it (all from scratch).

May someone provide me clarification on the following:
- what is the difference between "django hosting" and normal VPS?

What i get with more with django hosting?
Thanks

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: Cheap Django hosting?

2012-01-07 Thread profDjango
Hi

you can check http://freedjangohosting.com


for free and paid django hosting

Thanks

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/django-users/-/ZUlNyH_Ya0IJ.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: Cheap Django hosting?

2012-01-05 Thread victoria
Hi,

I wanted to mention that if you are OK with using EC2 you can also use
the public BitNami DjangoStack AMI (I'm part from the BitNami team).
It includes preconfigured version of Apache with mod_wsgi, django
1.3.1 and Python 2.6.5. It also includes PostgreSQL and MySQL.
Alternatively you can also use BitNami Cloud Hosting that makes easier
the management of your sever (start/stop, basic monitoring, resize
images, schedule backups,...) we offer a free developer plan in which
you will only be charged by the Amazon costs (which you pay directly
to them) so if you are elegible for the free tier, it would be
completely free for the first year.

If you are interested these are the links:
http://bitnami.org/stack/djangostack#cloudImage (the AMI) and
http://bitnami.org/cloud (BCH). I will be glad of answering any
question you may have about the service.

Best regards,

Victoria.

On Thu, Jan 5, 2012 at 6:52 AM, Alec Taylor  wrote:
> Interesting, thanks.
>
> On Thu, Jan 5, 2012 at 4:47 PM, Kenneth Reitz  wrote:
>> Heroku gives you 750 free "dyno hours" per month, per app for free.
>>
>> Essentially, they let any app run 24/7 (equivalent to a single server with
>> 512MB of RAM and some pretty beefy processors). Scaling a process to
>> multiple dynos is when the $0.05/hr charge starts (essentially adding
>> another server behind a load balancer).
>>
>>
>>
>> --
>> Kenneth Reitz
>>
>> On Wednesday, January 4, 2012 at 10:20 PM, Alec Taylor wrote:
>>
>> On Thu, Jan 5, 2012 at 4:44 AM, Kenneth Reitz  wrote:
>>
>> You could easily run that on Heroku, and it would cost you $0.
>>
>>
>> I don't understand, why would it cost $0 on Heroku?
>>
>> I checked http://heroku.com/pricing and it seems to cost.
>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "Django users" group.
>> To post to this group, send email to django-users@googlegroups.com.
>> To unsubscribe from this group, send email to
>> django-users+unsubscr...@googlegroups.com.
>> For more options, visit this group at
>> http://groups.google.com/group/django-users?hl=en.
>>
>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "Django users" group.
>> To post to this group, send email to django-users@googlegroups.com.
>> To unsubscribe from this group, send email to
>> django-users+unsubscr...@googlegroups.com.
>> For more options, visit this group at
>> http://groups.google.com/group/django-users?hl=en.
>
> --
> You received this message because you are subscribed to the Google Groups 
> "Django users" group.
> To post to this group, send email to django-users@googlegroups.com.
> To unsubscribe from this group, send email to 
> django-users+unsubscr...@googlegroups.com.
> For more options, visit this group at 
> http://groups.google.com/group/django-users?hl=en.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: Cheap Django hosting?

2012-01-04 Thread Alec Taylor
Interesting, thanks.

On Thu, Jan 5, 2012 at 4:47 PM, Kenneth Reitz  wrote:
> Heroku gives you 750 free "dyno hours" per month, per app for free.
>
> Essentially, they let any app run 24/7 (equivalent to a single server with
> 512MB of RAM and some pretty beefy processors). Scaling a process to
> multiple dynos is when the $0.05/hr charge starts (essentially adding
> another server behind a load balancer).
>
>
>
> --
> Kenneth Reitz
>
> On Wednesday, January 4, 2012 at 10:20 PM, Alec Taylor wrote:
>
> On Thu, Jan 5, 2012 at 4:44 AM, Kenneth Reitz  wrote:
>
> You could easily run that on Heroku, and it would cost you $0.
>
>
> I don't understand, why would it cost $0 on Heroku?
>
> I checked http://heroku.com/pricing and it seems to cost.
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To post to this group, send email to django-users@googlegroups.com.
> To unsubscribe from this group, send email to
> django-users+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/django-users?hl=en.
>
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To post to this group, send email to django-users@googlegroups.com.
> To unsubscribe from this group, send email to
> django-users+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/django-users?hl=en.

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: Cheap Django hosting?

2012-01-04 Thread Kenneth Reitz
Heroku gives you 750 free "dyno hours" per month, per app for free.

Essentially, they let any app run 24/7 (equivalent to a single server with 
512MB of RAM and some pretty beefy processors). Scaling a process to multiple 
dynos is when the $0.05/hr charge starts (essentially adding another server 
behind a load balancer). 



-- 
Kenneth Reitz


On Wednesday, January 4, 2012 at 10:20 PM, Alec Taylor wrote:

> On Thu, Jan 5, 2012 at 4:44 AM, Kenneth Reitz  (mailto:m...@kennethreitz.com)> wrote:
> > You could easily run that on Heroku, and it would cost you $0.
> 
> 
> I don't understand, why would it cost $0 on Heroku?
> 
> I checked http://heroku.com/pricing and it seems to cost.
> 
> -- 
> You received this message because you are subscribed to the Google Groups 
> "Django users" group.
> To post to this group, send email to django-users@googlegroups.com 
> (mailto:django-users@googlegroups.com).
> To unsubscribe from this group, send email to 
> django-users+unsubscr...@googlegroups.com 
> (mailto:django-users+unsubscr...@googlegroups.com).
> For more options, visit this group at 
> http://groups.google.com/group/django-users?hl=en.
> 
> 


-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: Cheap Django hosting?

2012-01-04 Thread Alec Taylor
I just got my free (beta) invite to Epio:

You set monthly limits on each resource, and we'll never charge you
for more than that. Each app comes with a free dynamic instance, 5GB
of free bandwidth and 2GB-months of free disk space.

An instance is similar to a single system task — it could be a web
server, Celery worker, high-memory Redis server or cron task. We
automatically give you more web server instances when you application
receives more traffic, as long as your limit is high enough.
PostgreSQL doesn't count as an instance, and there's a free Redis size
too.

Processes can use a maximum of 128MB of memory and are run on at least
the equivalent of two 2.8GHz Xeon processors. You can optionally use
more memory, but processes will cost proportionally more.



I have recommended for my other clients to purchase hosting from webfaction.

My professional hosting for when I run this large-scale system will be
on OrionVM.

Thanks for all the advice

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: Cheap Django hosting?

2012-01-04 Thread Alec Taylor
On Thu, Jan 5, 2012 at 4:44 AM, Kenneth Reitz  wrote:
> You could easily run that on Heroku, and it would cost you $0.
>

I don't understand, why would it cost $0 on Heroku?

I checked http://heroku.com/pricing and it seems to cost.

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: Cheap Django hosting?

2012-01-04 Thread Kenneth Reitz
You could easily run that on Heroku, and it would cost you $0. 


On Wednesday, January 4, 2012 at 12:15 PM, Timothy Makobu wrote:

> Ah yes.
> 
> What's the average monthly bill of an EC2 small (more reasonable resources) 
> instance running a Django on Postgres app handling an average of 200 requests 
> per hour?
> 
> Anyone have experience with this? (experience is better than the calculator 
> (http://calculator.s3.amazonaws.com/calc5.html) I reckon)  
> 
> 
> On Wed, Jan 4, 2012 at 7:24 PM, Javier Guerra Giraldez  (mailto:jav...@guerrag.com)> wrote:
> > On Tue, Jan 3, 2012 at 11:04 AM, Timothy Makobu
> >  wrote:
> > > They charge me for only what I use, and their free quotas are generous.
> > 
> > doesn't the free tier expire after one year?
> > 
> > --
> > Javier
> > 
> > --
> > You received this message because you are subscribed to the Google Groups 
> > "Django users" group.
> > To post to this group, send email to django-users@googlegroups.com 
> > (mailto:django-users@googlegroups.com).
> > To unsubscribe from this group, send email to 
> > django-users+unsubscr...@googlegroups.com 
> > (mailto:django-users%2bunsubscr...@googlegroups.com).
> > For more options, visit this group at 
> > http://groups.google.com/group/django-users?hl=en.
> > 
> 
> -- 
> You received this message because you are subscribed to the Google Groups 
> "Django users" group.
> To post to this group, send email to django-users@googlegroups.com 
> (mailto:django-users@googlegroups.com).
> To unsubscribe from this group, send email to 
> django-users+unsubscr...@googlegroups.com 
> (mailto:django-users+unsubscr...@googlegroups.com).
> For more options, visit this group at 
> http://groups.google.com/group/django-users?hl=en.

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: Cheap Django hosting?

2012-01-04 Thread Timothy Makobu
Ah yes.

What's the average monthly bill of an EC2 small (more reasonable resources)
instance running a Django on Postgres app handling an average of 200
requests per hour?

Anyone have experience with this? (experience is better than the
calculator I
reckon)


On Wed, Jan 4, 2012 at 7:24 PM, Javier Guerra Giraldez
wrote:

> On Tue, Jan 3, 2012 at 11:04 AM, Timothy Makobu
>  wrote:
> > They charge me for only what I use, and their free quotas are generous.
>
> doesn't the free tier expire after one year?
>
> --
> Javier
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To post to this group, send email to django-users@googlegroups.com.
> To unsubscribe from this group, send email to
> django-users+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/django-users?hl=en.
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: Cheap Django hosting?

2012-01-04 Thread Javier Guerra Giraldez
On Tue, Jan 3, 2012 at 11:04 AM, Timothy Makobu
 wrote:
> They charge me for only what I use, and their free quotas are generous.

doesn't the free tier expire after one year?

-- 
Javier

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: Cheap Django hosting?

2012-01-04 Thread Timothy Makobu
Yeah, 2 bux.

With Gentoo im able to squeeze out quite a bit out of that little thing.
But I switch to c1.xlarge when it comes to running "# emerge --update
--deep --with-bdeps=y --newuse world" and switch back to t1.micro
immediately after.

On Wed, Jan 4, 2012 at 6:21 PM, creecode  wrote:

> Hello Praveen Krishna R,
>
>
> On Wednesday, January 4, 2012 1:53:00 AM UTC-8, Praveen Krishna R wrote:
>
> *Did you say $2 per month for an EC2 instance ?!!*
>>
>
> That is for the Micro instance 
> which is suitable for some tasks 
> but not all.  Check out the
> pricing  structure for all their
> instance types.
>
> Toodle-lo
> creecode
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To view this discussion on the web visit
> https://groups.google.com/d/msg/django-users/-/cJdPJs47KN4J.
>
> To post to this group, send email to django-users@googlegroups.com.
> To unsubscribe from this group, send email to
> django-users+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/django-users?hl=en.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: Cheap Django hosting?

2012-01-04 Thread creecode
Hello Praveen Krishna R,

On Wednesday, January 4, 2012 1:53:00 AM UTC-8, Praveen Krishna R wrote:

*Did you say $2 per month for an EC2 instance ?!!*
>

That is for the Micro instance which 
is suitable for some tasks but not all.  Check out the 
pricing  structure for all their 
instance types.

Toodle-lo
creecode

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/django-users/-/cJdPJs47KN4J.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



  1   2   3   >