Re: [Rails] Re: what is mean of Deployment?

2011-04-19 Thread Colin Law
On 19 April 2011 17:26, amrit pal pathak wrote: > I think the production enviorment is still not enabled.because i when > i tried >   script/generate scaffold person firstname:string lastname:string; >                   rake db:migrate(it created a table named"people" in > amritpal database that i

[Rails] Re: what is mean of Deployment?

2011-04-19 Thread amrit pal pathak
I think the production enviorment is still not enabled.because i when i tried script/generate scaffold person firstname:string lastname:string; rake db:migrate(it created a table named"people" in amritpal database that is used in development envionrment.But in production envio

[Rails] Re: what is mean of Deployment?

2011-04-19 Thread amrit pal pathak
On Apr 18, 1:14 pm, Colin Law wrote: > On 18 April 2011 17:46, amrit pal pathak wrote: > > > > > > > > > > > > > On Apr 18, 12:30 pm, Colin Law wrote: > >> On 18 April 2011 17:12, amrit pal pathak wrote: > > >> > On Apr 18, 9:07 am, Colin Law wrote: > >> >> On 18 April 2011 10:00, amrit pal

Re: [Rails] Re: what is mean of Deployment?

2011-04-18 Thread Colin Law
On 18 April 2011 17:46, amrit pal pathak wrote: > > > On Apr 18, 12:30 pm, Colin Law wrote: >> On 18 April 2011 17:12, amrit pal pathak wrote: >> >> >> >> > On Apr 18, 9:07 am, Colin Law wrote: >> >> On 18 April 2011 10:00, amrit pal pathak >> >> wrote: >> >> >> > ... >> >> >     it will be c

[Rails] Re: what is mean of Deployment?

2011-04-18 Thread amrit pal pathak
On Apr 18, 12:30 pm, Colin Law wrote: > On 18 April 2011 17:12, amrit pal pathak wrote: > > > > > On Apr 18, 9:07 am, Colin Law wrote: > >> On 18 April 2011 10:00, amrit pal pathak wrote: > > >> > ... > >> >     it will be created as rake db:create (after specifying in the > >> > production e

Re: [Rails] Re: what is mean of Deployment?

2011-04-18 Thread Colin Law
On 18 April 2011 17:12, amrit pal pathak wrote: > > > On Apr 18, 9:07 am, Colin Law wrote: >> On 18 April 2011 10:00, amrit pal pathak wrote: >> >> > ... >> >     it will be created as rake db:create (after specifying in the >> > production enviornment i,e database: production)??  and to >> >> s

[Rails] Re: what is mean of Deployment?

2011-04-18 Thread dana tassler
As always, Colin has at least one good point. And I would add to that. Initially, you asked what is meant by deployment. Several people did provide the answer to that question, at which point this topic could safely have been considered "closed." Being resourceful is always a good idea. Howeve

[Rails] Re: what is mean of Deployment?

2011-04-18 Thread amrit pal pathak
On Apr 18, 9:07 am, Colin Law wrote: > On 18 April 2011 10:00, amrit pal pathak wrote: > > > ... > >     it will be created as rake db:create (after specifying in the > > production enviornment i,e database: production)??  and to > >> start the server in production mode. > > To create the produ

[Rails] Re: what is mean of Deployment?

2011-04-18 Thread amrit pal pathak
On Apr 18, 11:41 am, dana tassler wrote: > As always, Colin has at least one good point.  And I would add to > that. > > Initially, you asked what is meant by deployment.  Several people did > provide the answer to that question, at which point this topic could > safely have been considered "clo

Re: [Rails] Re: what is mean of Deployment?

2011-04-18 Thread Colin Law
On 18 April 2011 10:00, amrit pal pathak wrote: > ... >     it will be created as rake db:create (after specifying in the > production enviornment i,e database: production)??  and to >> start the server in production mode. To create the production database RAILS_ENV=production rake db:migrate Th

[Rails] Re: what is mean of Deployment?

2011-04-18 Thread amrit pal pathak
On Apr 18, 3:56 am, Colin Law wrote: > On 18 April 2011 08:23, amrit pal pathak wrote: > > > > > > > > > > > > > On Apr 17, 9:02 pm, Peter De Berdt wrote: > >> On 17 Apr 2011, at 17:04, amrit pal pathak wrote: > > >> > On Apr 17, 7:27 am, Chris Kottom wrote: > >> >> Are you planning to contin

Re: [Rails] Re: what is mean of Deployment?

2011-04-18 Thread Colin Law
On 18 April 2011 08:23, amrit pal pathak wrote: > > > On Apr 17, 9:02 pm, Peter De Berdt wrote: >> On 17 Apr 2011, at 17:04, amrit pal pathak wrote: >> >> >> >> > On Apr 17, 7:27 am, Chris Kottom wrote: >> >> Are you planning to continue using sqlite in the production >> >> environment? >> >>  M

[Rails] Re: what is mean of Deployment?

2011-04-18 Thread amrit pal pathak
On Apr 17, 9:02 pm, Peter De Berdt wrote: > On 17 Apr 2011, at 17:04, amrit pal pathak wrote: > > > > > On Apr 17, 7:27 am, Chris Kottom wrote: > >> Are you planning to continue using sqlite in the production   > >> environment? > >>  Most people don't, but it's not a problem to do so. > > >> I

[Rails] Re: what is mean of Deployment?

2011-04-18 Thread amrit pal pathak
On Apr 18, 11:48 am, Mohamed Aslam wrote: > All most all developers develop application in their local computer. > This is called as development environment. Once your development > completed, you need to move the application to a production server > where other people can use your website. Movi

[Rails] Re: what is mean of Deployment?

2011-04-17 Thread Mohamed Aslam
All most all developers develop application in their local computer. This is called as development environment. Once your development completed, you need to move the application to a production server where other people can use your website. Moving the application from development environment to pr

Re: [Rails] Re: what is mean of Deployment?

2011-04-17 Thread Chris Kottom
Also by default if you'd created the app as a MySQL app in the first place: encoding: utf8 reconnect: false socket: /var/run/mysqld/mysqld.sock HTH. On Sun, Apr 17, 2011 at 6:02 PM, Peter De Berdt wrote: > > On 17 Apr 2011, at 17:04, amrit pal pathak wrote: > > On Apr 17, 7:27 am, Chris Ko

Re: [Rails] Re: what is mean of Deployment?

2011-04-17 Thread Peter De Berdt
On 17 Apr 2011, at 17:04, amrit pal pathak wrote: On Apr 17, 7:27 am, Chris Kottom wrote: Are you planning to continue using sqlite in the production environment? Most people don't, but it's not a problem to do so. If not or if the default sqlite settings aren't right for you, then you'

[Rails] Re: what is mean of Deployment?

2011-04-17 Thread amrit pal pathak
On Apr 17, 7:27 am, Chris Kottom wrote: > Are you planning to continue using sqlite in the production environment? >  Most people don't, but it's not a problem to do so. > > If not or if the default sqlite settings aren't right for you, then you'll > need to make some changes, but those will dep

Re: [Rails] Re: what is mean of Deployment?

2011-04-17 Thread Chris Kottom
Are you planning to continue using sqlite in the production environment? Most people don't, but it's not a problem to do so. If not or if the default sqlite settings aren't right for you, then you'll need to make some changes, but those will depend on the environment you're deploying into. But w

[Rails] Re: what is mean of Deployment?

2011-04-17 Thread amrit pal pathak
On Apr 17, 4:06 am, Chris Kottom wrote: > In a strict operational sense, the term means installation and > configuration/activation of software on any environment under management, so > it could be meant as production, staging, integration testing, etc.  In the > Rails world where development an

Re: [Rails] Re: what is mean of Deployment?

2011-04-17 Thread Chris Kottom
In a strict operational sense, the term means installation and configuration/activation of software on any environment under management, so it could be meant as production, staging, integration testing, etc. In the Rails world where development and testing are most often virtual environments coexi

Re: [Rails] Re: what is mean of Deployment?

2011-04-17 Thread Colin Law
On 17 April 2011 07:08, amrit pal pathak wrote: > > > On Apr 16, 11:40 am, Colin Law wrote: >> On 16 April 2011 16:32, amritpal pathak wrote: >> >> > what is meaning of deploy a ruby on rails application?i am new to RoR. >> > please somebody explain it >> >> Deployment is the process of putting

[Rails] Re: what is mean of Deployment?

2011-04-16 Thread amrit pal pathak
On Apr 17, 2:08 am, amrit pal pathak wrote: > On Apr 16, 11:40 am, Colin Law wrote:> On 16 April > 2011 16:32, amritpal pathak wrote: > > > > what is meaning of deploy a ruby on rails application?i am new to RoR. > > > please somebody explain it > > > Deployment is the process of putting the

[Rails] Re: what is mean of Deployment?

2011-04-16 Thread amrit pal pathak
On Apr 16, 11:40 am, Colin Law wrote: > On 16 April 2011 16:32, amritpal pathak wrote: > > > what is meaning of deploy a ruby on rails application?i am new to RoR. > > please somebody explain it > > Deployment is the process of putting the application on a production > server for use by real us