Here is the process for installing and using it. First of all navigate to your directory of choice and type either:
Unix
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo npm install foreman -g | |
npm install foreman -g |
Then in your app you need to make a file called a Procfile, it is a standard text file, so just type “touch Procfile” to create it.
In the Procfile you will need to state what you want foreman to do when you start it, so in mine I have the following.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
web: node app.js |
This tells foreman to start app.js with node when I type “foreman start”
Last but not least if you are using things like online databases then you will need to use environment variables. Foreman uses a file called “.env” so “touch .env” in the directory to create it.
in .env the structure is this “MY_ENVIRONMENT_VARIABLE=blahblahblah”
then in your code just add “process.env.MY_ENVIRONMENT_VARIABLE" to use it.
Good Day

No comments:
Post a Comment