Jump to page: 1 2
Thread overview
D web/server app hosting
Aug 06, 2013
Luís Marques
Aug 06, 2013
Dicebot
Aug 06, 2013
Adam D. Ruppe
Aug 06, 2013
Nick Sabalausky
Aug 06, 2013
Nick Sabalausky
Aug 06, 2013
Luís Marques
Aug 06, 2013
Dicebot
Aug 06, 2013
Adam D. Ruppe
Aug 07, 2013
Nick Sabalausky
Aug 06, 2013
Jacob Carlborg
Aug 06, 2013
Suliman
Aug 06, 2013
Michael
Aug 07, 2013
Nikolay
Aug 08, 2013
nazriel
Aug 10, 2013
Luís Marques
August 06, 2013
Are you developing Web / server applications in D?

Where are you hosting them? Your own servers? AWS? Linode? Etc. What would you recommend?

How do you manage app versioning and deployment? For instance, AWS Beanstalk seems to be nice but Java only.
August 06, 2013
On Tuesday, 6 August 2013 at 11:58:37 UTC, Luís Marques wrote:
> Are you developing Web / server applications in D?
>
> Where are you hosting them? Your own servers? AWS? Linode? Etc. What would you recommend?
>
> How do you manage app versioning and deployment? For instance, AWS Beanstalk seems to be nice but Java only.

Don't have any commercial or widely used stuff, but for personal stuff maintain VPS on Linode.
August 06, 2013
On Tuesday, 6 August 2013 at 11:58:37 UTC, Luís Marques wrote:
> Are you developing Web / server applications in D?

Yup, I host my own stuff just on my home computer and my work stuff is hosted on colocated dedicated servers for the bigger jobs, and VPSes for smaller ones.

> How do you manage app versioning and deployment?

I just use shell scripts... nothing fancy.
August 06, 2013
On Tue, 06 Aug 2013 13:58:35 +0200
"Luís Marques" <luismarques@gmail.com> wrote:

> Are you developing Web / server applications in D?
> 

Yup.

> Where are you hosting them? Your own servers? AWS? Linode? Etc. What would you recommend?
> 

I'm using Linode and I'm absolutely thrilled with them (and I's a guy
who usually hates everything).

> How do you manage app versioning and deployment? For instance, AWS Beanstalk seems to be nice but Java only.

ATM, just manually, which is definitely *not* what I would recommend. I've been meaning to improve my updating/deployment process in that area.

August 06, 2013
On Tue, 6 Aug 2013 10:15:24 -0400
Nick Sabalausky <SeeWebsiteToContactMe@semitwist.com> wrote:
> 
> I'm using Linode and I'm absolutely thrilled with them (and I's a guy
> who usually hates everything).
> 

s/I's/I'm/
August 06, 2013
What D libraries are you using for your web / server apps?
August 06, 2013
On Tuesday, 6 August 2013 at 14:31:05 UTC, Luís Marques wrote:
> What D libraries are you using for your web / server apps?

http://vibed.org/
August 06, 2013
On 2013-08-06 16:15, Nick Sabalausky wrote:

> ATM, just manually, which is definitely *not* what I would recommend.
> I've been meaning to improve my updating/deployment process in that
> area.

In the Ruby on Rails world Capistrano is used. It should work for D as well. The basic idea of it is:

"Capistrano is a utility and framework for executing commands in parallel on multiple remote machines, via SSH."

But it uses Ruby so I guess nobody here will like it:

https://github.com/capistrano/capistrano

-- 
/Jacob Carlborg
August 06, 2013
On Tuesday, 6 August 2013 at 14:31:05 UTC, Luís Marques wrote:
> What D libraries are you using for your web / server apps?

I use my own custom libs
https://github.com/adamdruppe/misc-stuff-including-D-programming-language-web-stuff
August 06, 2013
On Tuesday, 6 August 2013 at 11:58:37 UTC, Luís Marques wrote:
> Are you developing Web / server applications in D?
>
> Where are you hosting them? Your own servers? AWS? Linode? Etc. What would you recommend?
>
> How do you manage app versioning and deployment? For instance, AWS Beanstalk seems to be nice but Java only.


http://tilaa.com/ the best choice!
« First   ‹ Prev
1 2