lucywyman / libreo

Libreo, redesigned to replace php with nodejs
0 stars 2 forks source link

12 factor app #3

Open iankronquist opened 10 years ago

iankronquist commented 10 years ago

I know some people who swear by this model for building a scalable web application: http://12factor.net/ What do you say we follow it?

iankronquist commented 10 years ago

To be clear, the only major thing I see at this point is that we have a hardcoded port. We can just get that from the environment.

http.createServer(onRequest).listen(process.env.Port || 8000);