Hi, I have an instance nodejs in elastic beanstalk and when I upload my project with eb deploy
I have to enter my instance with ssh and execute the command npm install
How can I automate the process?
Is it configured in this file?
branch-defaults:
master:
environment: nodeproyects-dev
environment-defaults:
nodeproyects-dev:
branch: null
repository: null
global:
application_name: nodeproyects
default_ec2_keyname: NodeConection
default_platform: arn:aws:elasticbeanstalk:us-west-2::platform/Node.js running on 64bit Amazon Linux/4.0.1
default_region: us-west-2
instance_profile: null
platform_name: null
platform_version: null
profile: eb-cli
sc: git
workspace_type: Application
If so, in part and how should I configure it?
Thank you.