Re: django windows user

2013-08-12 Thread gilberto dos santos alves
search google for cpanel many providers have this (also google have one). 
and see lots of steps that you could use. [1] 

[1] https://cpanel.net/

Em sábado, 10 de agosto de 2013 19h27min47s UTC-3, Robin Lery escreveu:
>
> Hello,
> I am a windows user, and its great learning django and python as well. I 
> am just curious that, when I happen to deploy my site for production, is it 
> helpful to deploy in unix system. And if there is, please guide me to use 
> ssh and other stuff that is required to deploy so. Any help will be highly 
> appreciated.
> Thank you.
>

-- 
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.
For more options, visit https://groups.google.com/groups/opt_out.




Re: django windows user

2013-08-12 Thread Robin Lery
Thank you all! Just one more question though, does hosting provider
provides any interface like virtual machine or so? It would have been great
if they were.


On Mon, Aug 12, 2013 at 5:09 AM, Mike Dewhirst wrote:

> On 12/08/2013 8:47am, Aaron C. de Bruyn wrote:
>
>> MySQL or Postgresql for your database,  followed by some basic SSH/SCP
>> knowledge.  For Windows users I recommend two tools:  PuTTY and WinSCP.
>>
>
> If you have a choice go with PostgreSQL and Filezilla is a useful tool
> which knows the SSL/TLS protocols.
>
>
> --
> 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+unsubscribe@**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
> .
> 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.
For more options, visit https://groups.google.com/groups/opt_out.




Re: django windows user

2013-08-11 Thread Mike Dewhirst

On 12/08/2013 8:47am, Aaron C. de Bruyn wrote:

MySQL or Postgresql for your database,  followed by some basic SSH/SCP
knowledge.  For Windows users I recommend two tools:  PuTTY and WinSCP.


If you have a choice go with PostgreSQL and Filezilla is a useful tool 
which knows the SSL/TLS protocols.


--
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.
For more options, visit https://groups.google.com/groups/opt_out.


Re: django windows user

2013-08-11 Thread Aaron C. de Bruyn
On Sun, Aug 11, 2013 at 1:35 PM, Robin Lery  wrote:

> have a linux server or hosting provider yet. I was just curious, as when
> the time will come to deploy in production level, what other basic things
> should I know. I will try the tutorials on ssh that you gave me. And thank
> you for your guidance!



There's lots to know.
My personal opinion is that you shouldn't take on too much at the start.
 If you know how to develop and market your app--stick to that.  Let
someone else host your site and deal with all the server stuff.

When your site starts getting wildly popular and you need to scale (or
hopefully a little bit before), start playing around on a test machine and
see what it takes to manage it appropriately.

Most of the servers I manage are Debian (or Ubuntu) based.  So the majority
of what I need to know is 'apt-get update && apt-get dist-upgrade' to keep
packages up-to-date, followed by a decent knowledge of Nginx (web server),
uwsgi (a WSGI...host?...that runs your Django app), MySQL or Postgresql for
your database,  followed by some basic SSH/SCP knowledge.  For Windows
users I recommend two tools:  PuTTY and WinSCP.  PuTTY will give you
command-line access via SSH on your server.  WinSCP is a nice
file-management GUI.

Not to say there isn't deeper knowledge required for tuning, caching,
firewalling, etc...but that's the majority of it.

If you ever have specific systems-management questions that aren't
particularly applicable to Django, Google is your friend--or shoot me an
e-mail.

-A

-- 
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.
For more options, visit https://groups.google.com/groups/opt_out.




Re: django windows user

2013-08-11 Thread Robin Lery
No, i don't have a linux server or hosting provider yet. I was just
curious, as when the time will come to deploy in production level, what
other basic things should I know. I will try the tutorials on ssh that you
gave me. And thank you for your guidance!


On Sun, Aug 11, 2013 at 4:51 AM, Aaron C. de Bruyn wrote:

> Google is your friend.
>
> The first tutorial that came up when I searched for 'ssh for windows
> users' was this site:
> http://support.suso.com/supki/SSH_Tutorial_for_Windows
>
> Do you have an existing Linux server at your house or with a hosting
> provider?
>
> If managing a Linux server is too steep of a learning curve, there are
> several providers out there that will do that for you and provide you a
> simple way to deploy your application.
>
> A good resource is Django Hosting: http://djangohosting.com/
>
> Each provider has different requirements for 'automagically' deploying
> your site.  Some use 'requirements.txt' file or a 'Procfile'.
>
> Some people find Heroku easy and cheap for deploying small test
> applications: https://www.heroku.com/
>
> If you have specific questions, please ask them and the community would be
> glad to assist.
>
> -A
>
>
>
> On Sat, Aug 10, 2013 at 3:27 PM, Robin Lery  wrote:
>
>> Hello,
>> I am a windows user, and its great learning django and python as well. I
>> am just curious that, when I happen to deploy my site for production, is it
>> helpful to deploy in unix system. And if there is, please guide me to use
>> ssh and other stuff that is required to deploy so. Any help will be highly
>> appreciated.
>> Thank you.
>>
>> --
>> 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.
>> 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.
> 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.
For more options, visit https://groups.google.com/groups/opt_out.


Re: django windows user

2013-08-10 Thread Aaron C. de Bruyn
Google is your friend.

The first tutorial that came up when I searched for 'ssh for windows users'
was this site:
http://support.suso.com/supki/SSH_Tutorial_for_Windows

Do you have an existing Linux server at your house or with a hosting
provider?

If managing a Linux server is too steep of a learning curve, there are
several providers out there that will do that for you and provide you a
simple way to deploy your application.

A good resource is Django Hosting: http://djangohosting.com/

Each provider has different requirements for 'automagically' deploying your
site.  Some use 'requirements.txt' file or a 'Procfile'.

Some people find Heroku easy and cheap for deploying small test
applications: https://www.heroku.com/

If you have specific questions, please ask them and the community would be
glad to assist.

-A



On Sat, Aug 10, 2013 at 3:27 PM, Robin Lery  wrote:

> Hello,
> I am a windows user, and its great learning django and python as well. I
> am just curious that, when I happen to deploy my site for production, is it
> helpful to deploy in unix system. And if there is, please guide me to use
> ssh and other stuff that is required to deploy so. Any help will be highly
> appreciated.
> Thank you.
>
> --
> 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.
> 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.
For more options, visit https://groups.google.com/groups/opt_out.




django windows user

2013-08-10 Thread Robin Lery
Hello,
I am a windows user, and its great learning django and python as well. I am
just curious that, when I happen to deploy my site for production, is it
helpful to deploy in unix system. And if there is, please guide me to use
ssh and other stuff that is required to deploy so. Any help will be highly
appreciated.
Thank you.

-- 
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.
For more options, visit https://groups.google.com/groups/opt_out.