Skip to content

Latest commit

 

History

History
57 lines (34 loc) · 1.33 KB

README.md

File metadata and controls

57 lines (34 loc) · 1.33 KB

Vue.js Cinema

Source code for the case-study project from the course Build A Vue.js Single-Page App with Vue Router

Demo

See the completed project here: http://vuejs-cinema.vuejsdevelopers.com/

Pre-installation

Installation

  1. Install this code on your local system

    1. Fork this repository (click 'Fork' button in top right corner)

    2. Clone the forked repository on your local file system

      cd /path/to/install/location
      
      git clone https://github.com/[your_username]/vuejs-cinema.git
      
  2. Change into directory

    cd vuejs-cinema
    
  3. Install dependencies

    npm install
    
  4. Create a .env file by copying the sample

    cp .env_sample .env
    

    Edit the .env file and replace any variables if needed

  5. Start project

    npm run start
    

Your site will be available at localhost:[PORT] where PORT is whatever value is set in your .env file.

Lecture branches

Note that branches in the repo named video/xxx correspond to course lectures.