Backend Setup
Last updated
Was this helpful?
Last updated
Was this helpful?
Now that we have our basic app set up, we can go ahead to initialize git and create our heroku app, if you donāt already have heroku setup on your computer or you are completely new to heroku, follow this ( to create an account and setup your computer.
Now when you login to your heroku dashboard, you should see your newly created app there like mine
lets make a quick list of things we need to do to configure our heroku app to work properly:
Create a Procfile
Setup postgres database
Configure our app to use the postgres database
1. Create a Procfile
All Heroku applications run in a collection of lightweight Linux containers called dynos. Creating a ā Procfileā at the root of our app directory would enable us to specify the commands that are exceuted by the appās dynos. You can read up on dynos here . Also for more information on Procfile read this article .
Next create a procfile at the root of the appās directory, and enter the following:
Here, we are telling heroku to run a command for the āreleaseā process type and the āwebā process type.
A Procfile declares its process types on individual lines, each with the following format:
<process type>
is an alphanumeric name for your command, such as web
, worker
, urgentworker
, clock
, and so on.
<command>
indicates the command that every dyno of the process type should execute on startup, such as rake jobs:work
.
The web
process type is used to start up our adonis js app. we are using the command npm start since our
app is essentially a node js app.
lastly we are setting ENV_SILENT=true
in order to suppress any environment errors.
2. Setup mysql database by adding the JawsDB MySQL addon
Navigate to the resources tab in the heroku dashboard, search for āJawsDB MySQLā under addons and select āJawsDB MySQLā.
Select the plan you want, we would use the free hobby dev plan here and click provision.
We should now have a new entry in our environment variables. Navigate to the settings tab and click āReveal configā vars button to display the environment variables.
3.Final Step
The release
process type is used to specify the command to run during your appās , in this case we are telling heroku to run our migrations with the ā-forceā flag to force it since our app is in a production environment.