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.
- Install LTS version of Node.js for Linux
- Install MongoDB for Linux
- You can download Github Desktop to get access not only for fancy UI but to the git toolset itself.
- Open bash with Git access or use Github desktop
- Clone the vue-blogfront-api project:
git clone https://github.com/ambrest/vue-blogfront-api
- Go to
vue-blogfront-api
and install dependencies:
cd vue-blogfront-api
npm install
- Run vue-blogfront-api:
npm run dev
- Open your cmdline of choice with Git access or use Github desktop
- Clone the vue-blogfront project:
git clone https://github.com/DivanteLtd/vue-blogfront.git
- Go to
vue-blogfront
directory and install dependencies:
cd vue-blogfront
npm install
- 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"
- Run Vue Blogfront Server:
npm run dev
Now you should have Vue Blogfront running on localhost:4000
.