Buildless-vuejs
Pretty basic way to develop a vuejs app.
Running local
Only requirement is an http server. Here is how I do it:
# in ~/.bash_profile
function server() {
local port="${1:-8000}"
open "http://localhost:${port}/" && python -m SimpleHTTPServer "$port"
}
server
Then open http://localhost:8000.
Running remote
Upload to CDN or AWS S3 hosting bucket.