-
Notifications
You must be signed in to change notification settings - Fork 109
Description
Summary
Has anyone else tried to run Kyt on Cloud 9
Motivation
I'm trying to experiment with development in the cloud.
Detailed design
I'm trying to run Kyt on Cloud 9
Previous Node.Js servers on Cloud 9 I've found the entry point and changed app.listen, to include
//process.env.PORT is for Cloud 9 & Heroku cloud hosting
app.listen(process.env.PORT || 8080, process.env.IP, function() {
console.log("omg Express Template 0.0.1 by TurtleWolfe.com");
});
I've found the Configure file, but not a place to change any similar options. I think this is part of Express Routing, but I'm new to Kyt, just heard about it on Software Engineering Daily
It appears to be building and launching ok, I just can't find the preview. I've tried changing the localhost from 3001 to 8081 as suggested by Cloud 9 documentation, but still no luck.
Drawbacks
probably reinventing the wheel, I'm new here and probably just missing something obvious
Alternatives
I just want to try this in a cloud development environment that will let me experiment for free.
Unresolved questions
What parts of the design are still TBD?
Is this a hosting option?