Deploying Applications
2021-8-16 Less than 1 minute
# Deploying Applications
1. What is the package.json file used for?
The heart of any Node project. It records important metadata about a project.
1
2. At what level of your project do you need package.json when deploying your application? Why?
At the start. It's not going to work while your testing components.
1
3. What command will ensure that your Vue code is compiled properly for deployment?
NPM I
1
4. _______ are used to provide your application with specific data based on it's environment. For example: connections strings, private keys or port. Fill in the blank.
.ENV
1
5. What are the two ways to view the logs from your Heroku app.
Not quite sure.
1
6. How do you update an app already deployed on Heroku?
I haven't had experience with heroku.
1
7. Why is branching important to version control?
It allows multiple contributors to isolate changes without destabilizing the codebase.
1
8. When should code review happen?
When you think you're finished with your application.
1
9. What is the term used to define combining two branches?
I believe that would be merging or merge.
1