Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/kyleparisi/buildless-vuejs


https://github.com/kyleparisi/buildless-vuejs

Last synced: about 2 months ago
JSON representation

Awesome Lists containing this project

README

        

# Buildless-vuejs

Pretty basic way to develop a vuejs app.

## Running local

Only requirement is an http server. Here is how I do it:

```bash
# in ~/.bash_profile
function server() {
local port="${1:-8000}"
open "http://localhost:${port}/" && python -m SimpleHTTPServer "$port"
}
```

```bash
server
```

Then open [http://localhost:8000](http://localhost:800).

## Running remote

Upload to CDN or AWS S3 hosting bucket.