Skip to content

Latest commit

 

History

History
61 lines (43 loc) · 1.74 KB

linux.md

File metadata and controls

61 lines (43 loc) · 1.74 KB

Installing on Linux

Vue Blogfront is based on open source technologies which should in theory work perfectly well on most of the leading operating systems. However, I develop the project using Windows machines.

Requirements

  1. Install LTS version of Node.js for Linux
  2. Install MongoDB for Linux
  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 bash 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:4000.