Skip to content

Latest commit

 

History

History
63 lines (44 loc) · 1.81 KB

windows.md

File metadata and controls

63 lines (44 loc) · 1.81 KB

Installing on windows

The steps below are tested on Windows environments. If you're on Linux please check Linux Installation Tutorial, if on mac: Mac Installation Tutorial.

Requirements

  1. Install LTS version of Node.js for Windows
  2. Install MongoDB for Windows
  3. You can download Github Desktop to get access not only for fancy UI but to the git toolset itself.

Installation of vue-blogfront-api

  1. Open the terminal with Git access or use Github desktop
  2. Clone the vue-blogfront-api project:
git clone https://github.com/ambrest/vue-blogfront-api
  1. Go to vue-blogfront-api and install dependencies:
cd vue-blogfront-api
npm install
  1. Run vue-blogfront-api:
npm run dev

Installation of vue-blogfront

  1. Open your cmdline of choice with Git access or use Github desktop
  2. Clone the vue-blogfront project:
git clone https://github.com/DivanteLtd/vue-blogfront.git
  1. Go to vue-blogfront directory and install dependencies:
cd vue-blogfront
npm install
  1. Configure vue-blogfront
    Since nginx is not used during development there are two properties which need to be changed in config.json:
"apiEndPoint": "http://localhost:4000/api"
  1. Run Vue Blogfront Server:
npm run dev

Now you should have Vue Blogfront running on localhost:3000.