You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thank you very much for your app, it's working very well, good stuff.
I will modifying your work for my project and i can sharing some tips some times here.
So for integration with forever, the command line is :
sudo forever start -c coffee /your-path-folder/app/app.coffee;
But when you restart the server, the app is gone.
So for execution of this command on startup Ubuntu, i create a script bash .sh in the same repertory app. His name is "start-webflix.sh"
The content :
#!/bin/sh
export NODE_ENV=production
export PATH=/usr/local/bin:$PATH
forever start c coffee /your-path-folder/app/app.coffee
Save and close
Now i edited /etc/rc.local
sudo gedit /etc/rc.local
The content before "exit" :
/your-path-folder/start-webflix.sh
Save, exit, reboot and normally it will be ok. Webflix is really here forever.
Enjoyed this tip.
Excuse my English I'm French.
The text was updated successfully, but these errors were encountered:
Hello,
Thank you very much for your app, it's working very well, good stuff.
I will modifying your work for my project and i can sharing some tips some times here.
So for integration with forever, the command line is :
sudo forever start -c coffee /your-path-folder/app/app.coffee;
But when you restart the server, the app is gone.
So for execution of this command on startup Ubuntu, i create a script bash .sh in the same repertory app. His name is "start-webflix.sh"
The content :
#!/bin/sh
export NODE_ENV=production
export PATH=/usr/local/bin:$PATH
forever start c coffee /your-path-folder/app/app.coffee
Save and close
Now i edited /etc/rc.local
sudo gedit /etc/rc.local
The content before "exit" :
/your-path-folder/start-webflix.sh
Save, exit, reboot and normally it will be ok. Webflix is really here forever.
Enjoyed this tip.
Excuse my English I'm French.
The text was updated successfully, but these errors were encountered: