vue-calculator icon indicating copy to clipboard operation
vue-calculator copied to clipboard

No starter files/settings for video?

Open ipkpjersi opened this issue 7 years ago • 3 comments

Hi @codyseibert

It seems that there is no starter files for your video here: https://www.youtube.com/watch?v=m1_ih43p24s, and you did not show the settings you used for setting up the project with Vue CLI.

Can you please provide some of this?

Thanks.

ipkpjersi avatar Sep 11 '18 17:09 ipkpjersi

@codyseibert Can you please comment on this?

ipkpjersi avatar Oct 10 '18 15:10 ipkpjersi

You have to run command "npm install" before you run "npm run serve".

  1. on the root directory of your project , on the command line: npm install (this will install dependency files you need.

  2. npm run serve

  3. wait for browser to open

mmarioolive avatar Aug 20 '19 20:08 mmarioolive

What I have done:

  • Install npm and node
  • Install vue/cli globally:
    npm install -g @vue/cli
  • Create the default Vue project on the folder:
    vue create client
  • Selected default options

This created a project similar to that one at the start of the video.
Then you can do as @mmarioolive said:

  • Start the Vue server npm run serve
  • If the browser don't open, acess the URL returned by npm:
App running at:
  - Local:   http://localhost:8080/
  - Network: http://<ip>:8080/

hirohaji avatar Sep 12 '19 22:09 hirohaji