Checkout app for BEYOND Instore.
These instructions target a Mac OS X development environment. If you are a Linux or Windows user, you will need to figure out the details yourself.
It might be that you have already node.js version 10 installed. In order to properly use this app, you need to install and pin node.js version 8. Don't ask me why, frontend experts told me so ;-)
$ brew install node@8
$ brew unlink node
Unlinking /usr/local/Cellar/node/10.9.0... 7 symlinks removed
$ brew link --force --overwrite node@8
Linking /usr/local/Cellar/node@8/8.11.4... 4287 symlinks created
If you need to have this software first in your PATH instead consider running:
echo 'export PATH="/usr/local/opt/node@8/bin:$PATH"' >> ~/.bash_profile
npm is dead, long live yarn! Frontend experts told me so ;-)
$ brew install yarn
$ yarn -v
1.9.4
Fork the repository and clone it onto your local machine:
$ git clone https://github.com/that-is-your-account/piggy-bank.git
$ cd piggy-bank
$ yarn install
$ yarn serve
yarn run v1.9.4
$ vue-cli-service serve
INFO Starting development server...
98% after emitting CopyPlugin
DONE Compiled successfully in 4193ms 12:17:47 PM
App running at:
- Local: http://localhost:8080/
- Network: http://192.168.2.46:8080/
Note that the development build is not optimized.
To create a production build, run yarn build.
$ open http://localhost:8080
After creating your own Heroku account, you can click the "Deploy to Heroku" button from your GitHub fork website.
If you want to deploy your latest changes directly to Heroku, you need to set it up just like any another git remote.
$ brew install heroku
$ heroku auth:login
heroku: Enter your login credentials
Email [[email protected]]:
Password: ***
Logged in as [email protected]
$ heroku git:remote --app=this-is-your-heroku-app
set git remote heroku to https://git.heroku.com/this-is-your-heroku-app.git
$ git push heroku master
- BEYOND REST API documentation
- vue.js guide
- vue.js API
- axios cheat sheet
- Bootstrap CSS
- boostrap-vue
- Font Awesome & vue.js
- Font Awesome free icons
- Visual Studio Code
- Vetur plugin for VS Code
- vue-devtools Chrome Extension
- Heroku