-
Notifications
You must be signed in to change notification settings - Fork 1.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How do i move a sails app to the host? #183
Comments
Hi Erica, You'll want to take advantage of a tool that 'resurrects' your server if it crashes. @techpines is working on bundling forever so you can run Sails as a daemon with In the mean time, here's how you deploy in production mode:
// app.js
require('sails').lift();
Other things you'll likely want to do in production:
More on that here:http://www.youtube.com/watch?v=GK-tFvpIR7c The big omission from that video is that, if you plan on keeping your app running (which you probably do!), you'll need to follow the steps mentioned above to use Getting your app on the serverIs your Node.js instance on appFrog spun up? When you have the ip address, you can go ahead and ssh onto it, then Then Hope that helps! |
@dcbartlett Would you be down to turn this into a how-to wiki page? |
@eguciar Hey Erica, I hope that got you sorted. Please feel free to reach out in the IRC or google group if you need more help! I'm going to close this issue. I also posted the resolution here: https://github.com/balderdashy/sails/wiki/Guide:-Deployment |
can i clone sail project to ftp server |
Im completely new to node.js wondering how i can get my app on a host (appFrog)
The text was updated successfully, but these errors were encountered: